summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorBret Lambert <blambert@cvs.openbsd.org>2013-09-13 08:49:18 +0000
committerBret Lambert <blambert@cvs.openbsd.org>2013-09-13 08:49:18 +0000
commit40216993f8d163a10c3f7cff04ff76c908fef6e9 (patch)
treedd61262ce826d21bcd37bfe5069d5a59af105fdd /sbin
parent0554593c5678f78240b776bee2589d2c6b1586ad (diff)
errx() provides its own newline, so remove it from the string here
ok henning@
Diffstat (limited to 'sbin')
-rw-r--r--sbin/pflogd/privsep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pflogd/privsep.c b/sbin/pflogd/privsep.c
index f45fde82929..4ca9f100927 100644
--- a/sbin/pflogd/privsep.c
+++ b/sbin/pflogd/privsep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: privsep.c,v 1.17 2009/12/24 10:06:35 sobrado Exp $ */
+/* $OpenBSD: privsep.c,v 1.18 2013/09/13 08:49:17 blambert Exp $ */
/*
* Copyright (c) 2003 Can Erkin Acar
@@ -273,7 +273,7 @@ priv_move_log(void)
int cmd, ret;
if (priv_fd < 0)
- errx(1, "%s: called from privileged portion\n", __func__);
+ errx(1, "%s: called from privileged portion", __func__);
cmd = PRIV_MOVE_LOG;
must_write(priv_fd, &cmd, sizeof(int));