diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-07-14 19:07:04 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-07-14 19:07:04 +0000 |
commit | 00a7b211a3a665bf26ccd5d64ad1761047c3d9c6 (patch) | |
tree | f04f00a7e0cec5f02a7cadfc6ff55c5165998cd2 /usr.sbin/tcpdump/privsep.c | |
parent | 5ff4cc38a6d5810b5dbce397544c9e73d77b1db9 (diff) |
no \n in errx(3)
From: Andrey Matveev <andrushock@korovino.net>
Diffstat (limited to 'usr.sbin/tcpdump/privsep.c')
-rw-r--r-- | usr.sbin/tcpdump/privsep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tcpdump/privsep.c b/usr.sbin/tcpdump/privsep.c index a3a61ec65ba..9307c5b0345 100644 --- a/usr.sbin/tcpdump/privsep.c +++ b/usr.sbin/tcpdump/privsep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: privsep.c,v 1.10 2004/06/09 19:21:55 otto Exp $ */ +/* $OpenBSD: privsep.c,v 1.11 2004/07/14 19:07:03 henning Exp $ */ /* * Copyright (c) 2003 Can Erkin Acar @@ -544,7 +544,7 @@ priv_init_done(void) int ret; if (priv_fd < 0) - errx(1, "%s: called from privileged portion\n", __func__); + errx(1, "%s: called from privileged portion", __func__); write_command(priv_fd, PRIV_INIT_DONE); must_read(priv_fd, &ret, sizeof(int)); |