mirror of git://anongit.mindrot.org/openssh.git
Temporary disable AUTHPRIV code until it's fixed. It is broken. =(
This commit is contained in:
parent
2d9bfb17be
commit
53f11c60b1
2
log.c
2
log.c
|
@ -284,10 +284,12 @@ log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr)
|
|||
case SYSLOG_FACILITY_AUTH:
|
||||
log_facility = LOG_AUTH;
|
||||
break;
|
||||
#if 0 /* This is broken. =) - BAL */
|
||||
#ifdef LOG_AUTHPRIV /** BAL: Verify */
|
||||
case SYSLOG_FACILITY_AUTHPRIV
|
||||
log_facility = AUTHPRIV;
|
||||
break
|
||||
#endif
|
||||
#endif
|
||||
case SYSLOG_FACILITY_LOCAL0:
|
||||
log_facility = LOG_LOCAL0;
|
||||
|
|
Loading…
Reference in New Issue