summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormmcc <mmcc@cvs.openbsd.org>2015-11-03 05:11:47 +0000
committermmcc <mmcc@cvs.openbsd.org>2015-11-03 05:11:47 +0000
commitbbf65aed9ed64848c649d4ff31b82f25d1c94514 (patch)
tree4d7aeaf354cc3ff32d3df3ea80a5fb7ce60d175e
parent5f3b2d60683741deb4d7d891b343511be713e842 (diff)
Blank line after pledge call.
-rw-r--r--usr.bin/from/from.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/from/from.c b/usr.bin/from/from.c
index 743e0981dc1..79bd7506863 100644
--- a/usr.bin/from/from.c
+++ b/usr.bin/from/from.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: from.c,v 1.22 2015/10/09 01:37:07 deraadt Exp $ */
+/* $OpenBSD: from.c,v 1.23 2015/11/03 05:11:46 mmcc Exp $ */
/* $NetBSD: from.c,v 1.6 1995/09/01 01:39:10 jtc Exp $ */
/*
@@ -76,6 +76,7 @@ main(int argc, char *argv[])
if (pledge("stdio rpath getpw", NULL) == -1)
err(1, "pledge");
+
file = mail_spool(file, *argv);
if ((fp = fopen(file, "r")) == NULL) {
if (!fflag && errno == ENOENT)