]> 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)
committerStephan Bosch <stephan.bosch@dovecot.fi>
Sun, 8 Apr 2018 09:19:18 +0000 (11:19 +0200)
src/lda/main.c

index ce4a191aaa627c6b9abb9a7d4b19fe64d3ee8000..bab20e88ad3f751cfdf51e25159c93edf53d6f39 100644 (file)
@@ -313,9 +313,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);
                        }
@@ -332,8 +332,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);
                        }
@@ -360,9 +360,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 -r parameter: %s", errstr);
                        }