summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2015-10-16 14:45:16 +0000
committerderaadt <deraadt@openbsd.org>2015-10-16 14:45:16 +0000
commitaf5d1cb8301f54c9d51dae2cad7ce8d2c99909cb (patch)
treee2d1bba9bfe2f0f94a92017350424394e6ccb380
parentFix use of pointer value after BIO_free, and remove senseless NULL checks. (diff)
downloadwireguard-openbsd-af5d1cb8301f54c9d51dae2cad7ce8d2c99909cb.tar.xz
wireguard-openbsd-af5d1cb8301f54c9d51dae2cad7ce8d2c99909cb.zip
wrap a long line
-rw-r--r--bin/ksh/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/ksh/main.c b/bin/ksh/main.c
index 8f62230b31e..392de9f8296 100644
--- a/bin/ksh/main.c
+++ b/bin/ksh/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.63 2015/10/16 13:37:43 millert Exp $ */
+/* $OpenBSD: main.c,v 1.64 2015/10/16 14:45:16 deraadt Exp $ */
/*
* startup, main loop, environments and error handling
@@ -103,7 +103,8 @@ main(int argc, char *argv[])
kshname = argv[0];
#ifndef MKNOD
- if (pledge("stdio rpath wpath cpath fattr flock getpw proc exec tty", NULL) == -1)
+ if (pledge("stdio rpath wpath cpath fattr flock getpw proc exec tty",
+ NULL) == -1)
perror("pledge");
#endif