diff options
author | 2005-09-19 23:34:52 +0000 | |
---|---|---|
committer | 2005-09-19 23:34:52 +0000 | |
commit | 43dbcf896e554eee09f0bf6b94829fe4aa4c9798 (patch) | |
tree | 4ea9bcdec84387c0808f0c05faa21126e1733dcd /usr.sbin/syslogc/syslogc.c | |
parent | spelling nit from stevesk@ (diff) | |
download | wireguard-openbsd-43dbcf896e554eee09f0bf6b94829fe4aa4c9798.tar.xz wireguard-openbsd-43dbcf896e554eee09f0bf6b94829fe4aa4c9798.zip |
zap unused header and #defines, mostly from stevesk@
Diffstat (limited to 'usr.sbin/syslogc/syslogc.c')
-rw-r--r-- | usr.sbin/syslogc/syslogc.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/usr.sbin/syslogc/syslogc.c b/usr.sbin/syslogc/syslogc.c index 9a219721934..ff5a6d1b49e 100644 --- a/usr.sbin/syslogc/syslogc.c +++ b/usr.sbin/syslogc/syslogc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: syslogc.c,v 1.9 2005/04/03 03:42:47 djm Exp $ */ +/* $OpenBSD: syslogc.c,v 1.10 2005/09/19 23:34:52 djm Exp $ */ /* * Copyright (c) 2004 Damien Miller @@ -21,7 +21,6 @@ #include <sys/un.h> #include <err.h> -#include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -56,10 +55,6 @@ struct ctl_reply_hdr { /* Reply text follows, up to MAX_MEMBUF long */ }; -/* Protocol parameters - must match syslogd */ -#define CTL_VERSION 0 -#define CTL_HDR_LEN 8 - static void usage(void) { |