diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-07-31 21:28:29 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-07-31 21:28:29 +0000 |
commit | 1472e2b5666bd9c64d37882b7cfb2596d9352eb3 (patch) | |
tree | 85380a6b542b5c4752d0fcc0f20c8f46632a8f48 | |
parent | a11d33cb66c2a63ab4cc10df9bee32b699bab2aa (diff) |
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; |