From: Stephan Bosch Date: Sun, 8 Apr 2018 09:19:18 +0000 (+0200) Subject: lda: Reformatted main.c. X-Git-Tag: 2.3.9~2044 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa4abf206a032c72fe4c8a0e11b7f6cbfc4df8dc;p=thirdparty%2Fdovecot%2Fcore.git lda: Reformatted main.c. --- diff --git a/src/lda/main.c b/src/lda/main.c index ce4a191aaa..bab20e88ad 100644 --- a/src/lda/main.c +++ b/src/lda/main.c @@ -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); }