diff options
author | 2003-07-31 21:28:28 +0000 | |
---|---|---|
committer | 2003-07-31 21:28:28 +0000 | |
commit | 0ef9c1bb96dec36f2c53bddc7cd39ee36d4d37f7 (patch) | |
tree | 06e8d34cd8c5174c6438949b1f249e3da420dd00 | |
parent | Historically, patch would treat a bare -p as -p0. This contradicts (diff) | |
download | wireguard-openbsd-0ef9c1bb96dec36f2c53bddc7cd39ee36d4d37f7.tar.xz wireguard-openbsd-0ef9c1bb96dec36f2c53bddc7cd39ee36d4d37f7.zip |
delint
-rw-r--r-- | usr.sbin/syslogd/privsep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/syslogd/privsep.c b/usr.sbin/syslogd/privsep.c index f2e87263dc2..52facb479df 100644 --- a/usr.sbin/syslogd/privsep.c +++ b/usr.sbin/syslogd/privsep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: privsep.c,v 1.2 2003/07/31 18:25:58 avsm Exp $ */ +/* $OpenBSD: privsep.c,v 1.3 2003/07/31 21:28:28 deraadt Exp $ */ /* * Copyright (c) 2003 Anil Madhavapeddy <anil@recoil.org> @@ -57,7 +57,7 @@ enum priv_state { STATE_CONFIG, /* parsing config file for first time */ STATE_RUNNING, /* running and accepting network traffic */ STATE_QUIT, /* shutting down */ - STATE_RESTART, /* kill child and re-exec to restart */ + STATE_RESTART /* kill child and re-exec to restart */ }; enum cmd_types { @@ -68,7 +68,7 @@ enum cmd_types { PRIV_CONFIG_MODIFIED, /* check if config file has been modified */ PRIV_GETHOSTBYNAME, /* resolve hostname into numerical address */ PRIV_GETHOSTBYADDR, /* resolve numeric address into hostname */ - PRIV_DONE_CONFIG_PARSE, /* signal that the initial config parse is done */ + PRIV_DONE_CONFIG_PARSE /* signal that the initial config parse is done */ }; static int priv_fd = -1; |