diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | log.h | 6 |
2 files changed, 7 insertions, 4 deletions
@@ -10,6 +10,9 @@ | |||
10 | [session.c ssh.c] | 10 | [session.c ssh.c] |
11 | don't limit xauth pathlen on client side and longer print length on | 11 | don't limit xauth pathlen on client side and longer print length on |
12 | server when debug; ok markus@ | 12 | server when debug; ok markus@ |
13 | - deraadt@cvs.openbsd.org 2002/05/19 20:54:52 | ||
14 | [log.h] | ||
15 | extra commas in enum not 100% portable | ||
13 | 16 | ||
14 | 20020604 | 17 | 20020604 |
15 | - (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed | 18 | - (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed |
@@ -694,4 +697,4 @@ | |||
694 | - (stevesk) entropy.c: typo in debug message | 697 | - (stevesk) entropy.c: typo in debug message |
695 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ | 698 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ |
696 | 699 | ||
697 | $Id: ChangeLog,v 1.2146 2002/06/06 19:49:54 mouring Exp $ | 700 | $Id: ChangeLog,v 1.2147 2002/06/06 19:51:06 mouring Exp $ |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: log.h,v 1.6 2002/02/22 12:20:34 markus Exp $ */ | 1 | /* $OpenBSD: log.h,v 1.7 2002/05/19 20:54:52 deraadt Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -33,7 +33,7 @@ typedef enum { | |||
33 | SYSLOG_FACILITY_LOCAL5, | 33 | SYSLOG_FACILITY_LOCAL5, |
34 | SYSLOG_FACILITY_LOCAL6, | 34 | SYSLOG_FACILITY_LOCAL6, |
35 | SYSLOG_FACILITY_LOCAL7, | 35 | SYSLOG_FACILITY_LOCAL7, |
36 | SYSLOG_FACILITY_NOT_SET = -1, | 36 | SYSLOG_FACILITY_NOT_SET = -1 |
37 | } SyslogFacility; | 37 | } SyslogFacility; |
38 | 38 | ||
39 | typedef enum { | 39 | typedef enum { |
@@ -45,7 +45,7 @@ typedef enum { | |||
45 | SYSLOG_LEVEL_DEBUG1, | 45 | SYSLOG_LEVEL_DEBUG1, |
46 | SYSLOG_LEVEL_DEBUG2, | 46 | SYSLOG_LEVEL_DEBUG2, |
47 | SYSLOG_LEVEL_DEBUG3, | 47 | SYSLOG_LEVEL_DEBUG3, |
48 | SYSLOG_LEVEL_NOT_SET = -1, | 48 | SYSLOG_LEVEL_NOT_SET = -1 |
49 | } LogLevel; | 49 | } LogLevel; |
50 | 50 | ||
51 | void log_init(char *, LogLevel, SyslogFacility, int); | 51 | void log_init(char *, LogLevel, SyslogFacility, int); |