diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-07-28 13:54:36 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-07-28 13:54:36 +0000 |
commit | 156fe56defd653a350f66312625a35d09da0814b (patch) | |
tree | 961ec338a5bb2451a006d6db382de3bbb649bd1d /usr.sbin/smtpd | |
parent | d27c137dbc67caee131117bbe1b88222b7601074 (diff) |
indent
Diffstat (limited to 'usr.sbin/smtpd')
-rw-r--r-- | usr.sbin/smtpd/smtpd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpd.c b/usr.sbin/smtpd/smtpd.c index 7782e45935a..77c0fcb2c3d 100644 --- a/usr.sbin/smtpd/smtpd.c +++ b/usr.sbin/smtpd/smtpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.c,v 1.75 2009/06/06 04:14:21 pyr Exp $ */ +/* $OpenBSD: smtpd.c,v 1.76 2009/07/28 13:54:35 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -1226,7 +1226,8 @@ parent_mailbox_open(char *path, struct passwd *pw, struct batch *batchp) close(STDERR_FILENO); dup2(pipefd[1], 0); - execlp(PATH_MAILLOCAL, "mail.local", "-f", sender, pw->pw_name, (void *)NULL); + execlp(PATH_MAILLOCAL, "mail.local", "-f", sender, pw->pw_name, + (void *)NULL); _exit(1); } |