diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-19 20:54:53 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-19 20:54:53 +0000 |
commit | 1789cbfb052fbc4500cf7efedeceea4d6d60bff2 (patch) | |
tree | 12eb07c86028ef9114af497509e88bd2368bca2e /usr.bin | |
parent | 094831f5f1525b00b4970ee67b7eff11fe7d828f (diff) |
extra commas in enum not 100% portable
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/log.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/log.h b/usr.bin/ssh/log.h index 276ba05ea66..1c6a21c24b7 100644 --- a/usr.bin/ssh/log.h +++ b/usr.bin/ssh/log.h @@ -1,4 +1,4 @@ -/* $OpenBSD: log.h,v 1.6 2002/02/22 12:20:34 markus Exp $ */ +/* $OpenBSD: log.h,v 1.7 2002/05/19 20:54:52 deraadt Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -28,7 +28,7 @@ typedef enum { SYSLOG_FACILITY_LOCAL5, SYSLOG_FACILITY_LOCAL6, SYSLOG_FACILITY_LOCAL7, - SYSLOG_FACILITY_NOT_SET = -1, + SYSLOG_FACILITY_NOT_SET = -1 } SyslogFacility; typedef enum { @@ -40,7 +40,7 @@ typedef enum { SYSLOG_LEVEL_DEBUG1, SYSLOG_LEVEL_DEBUG2, SYSLOG_LEVEL_DEBUG3, - SYSLOG_LEVEL_NOT_SET = -1, + SYSLOG_LEVEL_NOT_SET = -1 } LogLevel; void log_init(char *, LogLevel, SyslogFacility, int); |