diff options
author | 1996-12-15 19:19:40 +0000 | |
---|---|---|
committer | 1996-12-15 19:19:40 +0000 | |
commit | 4057a226e725b937716aed4f0ebf0320eff45802 (patch) | |
tree | ced619b8ad83db32298c39314e6022bb13742b16 | |
parent | Less output when not needed. (diff) | |
download | wireguard-openbsd-4057a226e725b937716aed4f0ebf0320eff45802.tar.xz wireguard-openbsd-4057a226e725b937716aed4f0ebf0320eff45802.zip |
Log to LOG_AUTHPRIV not LOG_LOCAL2 (which conflicts with chat)
-rw-r--r-- | gnu/usr.bin/sudo/sudo/options.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/sudo/sudo/options.h b/gnu/usr.bin/sudo/sudo/options.h index b9ec48b01be..533f5cc2705 100644 --- a/gnu/usr.bin/sudo/sudo/options.h +++ b/gnu/usr.bin/sudo/sudo/options.h @@ -17,7 +17,7 @@ * * Please send bugs, changes, problems to sudo-bugs@courtesan.com * - * $Id: options.h,v 1.2 1996/11/17 16:34:01 millert Exp $ + * $Id: options.h,v 1.3 1996/12/15 19:19:40 millert Exp $ */ #ifndef _SUDO_OPTIONS_H @@ -33,7 +33,7 @@ /*#define FQDN /* expect fully qualified hosts in sudoers */ #define LOGGING SLOG_SYSLOG /* log via SLOG_SYSLOG, SLOG_FILE, SLOG_BOTH */ -#define LOGFAC LOG_LOCAL2 /* syslog facility for sudo to use */ +#define LOGFAC LOG_AUTHPRIV /* syslog facility for sudo to use */ #define MAXLOGFILELEN 80 /* max chars per log line (for line wrapping) */ /*#define NO_ROOT_SUDO /* root is not allowed to use sudo */ #define ALERTMAIL "root" /* user that gets sudo mail */ |