summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sasyncd
diff options
context:
space:
mode:
authorreyk <reyk@openbsd.org>2017-04-04 14:04:54 +0000
committerreyk <reyk@openbsd.org>2017-04-04 14:04:54 +0000
commit5c2f673a3d2daae5352b405e5fa58652be42a8ee (patch)
tree61afc3d30a891c31f97fc58ac0dc6a0b8d171d92 /usr.sbin/sasyncd
parentTreat SSID's like the 0 to 32 bytes of uint8_t data that they really (diff)
downloadwireguard-openbsd-5c2f673a3d2daae5352b405e5fa58652be42a8ee.tar.xz
wireguard-openbsd-5c2f673a3d2daae5352b405e5fa58652be42a8ee.zip
Add missing newline in fprintf error message.
OK jsg@
Diffstat (limited to 'usr.sbin/sasyncd')
-rw-r--r--usr.sbin/sasyncd/sasyncd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sasyncd/sasyncd.c b/usr.sbin/sasyncd/sasyncd.c
index ac17dca53b8..a02745f3e96 100644
--- a/usr.sbin/sasyncd/sasyncd.c
+++ b/usr.sbin/sasyncd/sasyncd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sasyncd.c,v 1.24 2015/08/20 22:39:29 deraadt Exp $ */
+/* $OpenBSD: sasyncd.c,v 1.25 2017/04/04 14:04:54 reyk Exp $ */
/*
* Copyright (c) 2005 Håkan Olsson. All rights reserved.
@@ -191,7 +191,7 @@ main(int argc, char **argv)
if (conf_parse_file(cfgfile) == 0 ) {
if (!cfgstate.sharedkey) {
fprintf(stderr, "config: "
- "no shared key specified, cannot continue");
+ "no shared key specified, cannot continue\n");
exit(1);
}
} else {