From: Marco Bettini Date: Thu, 6 Oct 2022 14:39:03 +0000 (+0000) Subject: lib-imap-urlauth: imap_urlauth_fetch_local() - Reformat code X-Git-Tag: 2.4.0~3515 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a76f61323d27ace470b89b3570f5cde06543a597;p=thirdparty%2Fdovecot%2Fcore.git lib-imap-urlauth: imap_urlauth_fetch_local() - Reformat code --- diff --git a/src/lib-imap-urlauth/imap-urlauth-fetch.c b/src/lib-imap-urlauth/imap-urlauth-fetch.c index 39ba7045ef..f528590d19 100644 --- a/src/lib-imap-urlauth/imap-urlauth-fetch.c +++ b/src/lib-imap-urlauth/imap-urlauth-fetch.c @@ -198,8 +198,9 @@ imap_urlauth_fetch_local(struct imap_urlauth_fetch *ufetch, const char *url, } if (ret <= 0) { if (ret == 0) { - errormsg = t_strdup_printf("Failed to fetch URLAUTH \"%s\": %s", - url, error); + errormsg = t_strdup_printf( + "Failed to fetch URLAUTH \"%s\": %s", + url, error); e_debug(event, "%s", errormsg); } success = FALSE; @@ -213,8 +214,9 @@ imap_urlauth_fetch_local(struct imap_urlauth_fetch *ufetch, const char *url, ret = imap_msgpart_url_get_bodypartstructure(mpurl, &bpstruct, &error); if (ret <= 0) { if (ret == 0) { - errormsg = t_strdup_printf - ("Failed to read URLAUTH \"%s\": %s", url, error); + errormsg = t_strdup_printf( + "Failed to read URLAUTH \"%s\": %s", + url, error); e_debug(event, "%s", errormsg); } success = FALSE; @@ -228,8 +230,9 @@ imap_urlauth_fetch_local(struct imap_urlauth_fetch *ufetch, const char *url, ret = imap_msgpart_url_read_part(mpurl, &mpresult, &error); if (ret <= 0) { if (ret == 0) { - errormsg = t_strdup_printf - ("Failed to read URLAUTH \"%s\": %s", url, error); + errormsg = t_strdup_printf( + "Failed to read URLAUTH \"%s\": %s", + url, error); e_debug(event, "%s", errormsg); } success = FALSE;