Displaying 2 results from an estimated 2 matches for "syslog_facility_local5".
Did you mean:
  syslog_facility_local0
  
2001 Oct 15
0
cosmetic patch
These get rid of some warnings on picky compilers (like SGI's).  It really
helps to get rid of warnings.
--- openssh-snap/log.c  Wed Jul  4 13:46:58 2001
+++ openssh/log.c       Mon Oct 15 17:34:26 2001
@@ -68,7 +68,7 @@
        { "LOCAL5",     SYSLOG_FACILITY_LOCAL5 },
        { "LOCAL6",     SYSLOG_FACILITY_LOCAL6 },
        { "LOCAL7",     SYSLOG_FACILITY_LOCAL7 },
-       { NULL, 0 }
+       { NULL, (SyslogFacility)0 }
 };
 static struct {
@@ -85,7 +85,7 @@
        { "DEBUG1",     SYSLOG_LEVEL_DEBUG1 },
        { "DEBUG2&...
2002 Jun 05
1
Trailing comma in enum for 3.2.3p1
...+50,7 @@
 	MONITOR_REQ_RSACHALLENGE, MONITOR_ANS_RSACHALLENGE,
 	MONITOR_REQ_RSARESPONSE, MONITOR_ANS_RSARESPONSE,
 	MONITOR_REQ_PAM_START,
-	MONITOR_REQ_TERM,
+	MONITOR_REQ_TERM
 };
 
 struct mm_master;
--- log.h.orig	Tue Jun  4 17:51:55 2002
+++ log.h	Tue Jun  4 17:52:03 2002
@@ -33,7 +33,7 @@
 	SYSLOG_FACILITY_LOCAL5,
 	SYSLOG_FACILITY_LOCAL6,
 	SYSLOG_FACILITY_LOCAL7,
-	SYSLOG_FACILITY_NOT_SET = -1,
+	SYSLOG_FACILITY_NOT_SET = -1
 }       SyslogFacility;
 
 typedef enum {
@@ -45,7 +45,7 @@
 	SYSLOG_LEVEL_DEBUG1,
 	SYSLOG_LEVEL_DEBUG2,
 	SYSLOG_LEVEL_DEBUG3,
-	SYSLOG_LEVEL_NOT_SET = -1,
+	SYSLOG_LEVEL_NOT_SET =...