]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lda: Reformatted main.c.
authorStephan Bosch <stephan.bosch@dovecot.fi>
Sun, 8 Apr 2018 09:19:18 +0000 (11:19 +0200)
committerVille Savolainen <ville.savolainen@dovecot.fi>
Tue, 15 May 2018 08:59:40 +0000 (11:59 +0300)
src/lda/main.c

index 998bfdd35ec6873bf14f378b389a28e53e8341c0..35f159c9e19132f943157026d839bc72888ff512 100644 (file)
@@ -311,9 +311,9 @@ int main(int argc, char *argv[])
                case 'a':
                        /* original recipient address */
                        if (smtp_address_parse_path(ctx.pool, optarg,
-                               SMTP_ADDRESS_PARSE_FLAG_ALLOW_LOCALPART |
-                                       SMTP_ADDRESS_PARSE_FLAG_BRACKETS_OPTIONAL,
-                               &rcpt_to, &errstr) < 0) {
+                           SMTP_ADDRESS_PARSE_FLAG_ALLOW_LOCALPART |
+                               SMTP_ADDRESS_PARSE_FLAG_BRACKETS_OPTIONAL,
+                           &rcpt_to, &errstr) < 0) {
                                i_fatal_status(EX_USAGE,
                                        "Invalid -a parameter: %s", errstr);
                        }
@@ -330,8 +330,8 @@ int main(int argc, char *argv[])
                case 'f':
                        /* envelope sender address */
                        if (smtp_address_parse_path(ctx.pool, optarg,
-                               SMTP_ADDRESS_PARSE_FLAG_BRACKETS_OPTIONAL,
-                               &mail_from, &errstr) < 0) {
+                           SMTP_ADDRESS_PARSE_FLAG_BRACKETS_OPTIONAL,
+                           &mail_from, &errstr) < 0) {
                                i_fatal_status(EX_USAGE,
                                        "Invalid -f parameter: %s", errstr);
                        }
@@ -358,9 +358,9 @@ int main(int argc, char *argv[])
                case 'r':
                        /* final recipient address */
                        if (smtp_address_parse_path(ctx.pool, optarg,
-                               SMTP_ADDRESS_PARSE_FLAG_ALLOW_LOCALPART |
+                           SMTP_ADDRESS_PARSE_FLAG_ALLOW_LOCALPART |
                                SMTP_ADDRESS_PARSE_FLAG_BRACKETS_OPTIONAL,
-                               &final_rcpt_to, &errstr) < 0) {
+                           &final_rcpt_to, &errstr) < 0) {
                                i_fatal_status(EX_USAGE,
                                        "Invalid -a parameter: %s", errstr);
                        }