diff options
author | 2002-05-19 20:54:52 +0000 | |
---|---|---|
committer | 2002-05-19 20:54:52 +0000 | |
commit | 112506e8d1fe46fe95dfdc1f5148ff63da35c0d8 (patch) | |
tree | 13e635d35b3165a55bd75ca9999023e0867f9a39 | |
parent | make pppd only executable by group network (diff) | |
download | wireguard-openbsd-112506e8d1fe46fe95dfdc1f5148ff63da35c0d8.tar.xz wireguard-openbsd-112506e8d1fe46fe95dfdc1f5148ff63da35c0d8.zip |
extra commas in enum not 100% portable
-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); |