summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgilles <gilles@openbsd.org>2009-07-28 13:54:35 +0000
committergilles <gilles@openbsd.org>2009-07-28 13:54:35 +0000
commite00312b5adf230432af3c7fc8ad212e44ea79ffa (patch)
tree9bd7a96d9435e035c504aabb4794faf9c6d57c7a
parent- Don't access VPD even if hardware advertised the capability. (diff)
downloadwireguard-openbsd-e00312b5adf230432af3c7fc8ad212e44ea79ffa.tar.xz
wireguard-openbsd-e00312b5adf230432af3c7fc8ad212e44ea79ffa.zip
indent
-rw-r--r--usr.sbin/smtpd/smtpd.c5
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);
}