f5cf6420c2
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/stunnel#f9ca4da8a2d51f8ede0dc3bd12b1df466ad9786a
53 lines
2.9 KiB
Diff
53 lines
2.9 KiB
Diff
diff -up stunnel-5.50/doc/stunnel.8.in.authpriv stunnel-5.50/doc/stunnel.8.in
|
|
--- stunnel-5.50/doc/stunnel.8.in.authpriv 2018-12-02 23:47:20.000000000 +0100
|
|
+++ stunnel-5.50/doc/stunnel.8.in 2019-01-14 12:15:05.135100163 +0100
|
|
@@ -200,7 +200,7 @@ info (6), or debug (7). All logs for th
|
|
all levels numerically less than it will be shown. Use \fIdebug = debug\fR or
|
|
\&\fIdebug = 7\fR for greatest debugging output. The default is notice (5).
|
|
.Sp
|
|
-The syslog facility 'daemon' will be used unless a facility name is supplied.
|
|
+The syslog facility 'authpriv' will be used unless a facility name is supplied.
|
|
(Facilities are not supported on Win32.)
|
|
.Sp
|
|
Case is ignored for both facilities and levels.
|
|
diff -up stunnel-5.50/doc/stunnel.html.in.authpriv stunnel-5.50/doc/stunnel.html.in
|
|
--- stunnel-5.50/doc/stunnel.html.in.authpriv 2018-12-02 23:47:21.000000000 +0100
|
|
+++ stunnel-5.50/doc/stunnel.html.in 2019-01-14 12:15:05.136100146 +0100
|
|
@@ -244,7 +244,7 @@
|
|
|
|
<p>Level is one of the syslog level names or numbers emerg (0), alert (1), crit (2), err (3), warning (4), notice (5), info (6), or debug (7). All logs for the specified level and all levels numerically less than it will be shown. Use <i>debug = debug</i> or <i>debug = 7</i> for greatest debugging output. The default is notice (5).</p>
|
|
|
|
-<p>The syslog facility 'daemon' will be used unless a facility name is supplied. (Facilities are not supported on Win32.)</p>
|
|
+<p>The syslog facility 'authpriv' will be used unless a facility name is supplied. (Facilities are not supported on Win32.)</p>
|
|
|
|
<p>Case is ignored for both facilities and levels.</p>
|
|
|
|
diff -up stunnel-5.50/doc/stunnel.pod.in.authpriv stunnel-5.50/doc/stunnel.pod.in
|
|
--- stunnel-5.50/doc/stunnel.pod.in.authpriv 2018-12-02 23:47:18.000000000 +0100
|
|
+++ stunnel-5.50/doc/stunnel.pod.in 2019-01-14 12:15:05.136100146 +0100
|
|
@@ -192,7 +192,7 @@ info (6), or debug (7). All logs for th
|
|
all levels numerically less than it will be shown. Use I<debug = debug> or
|
|
I<debug = 7> for greatest debugging output. The default is notice (5).
|
|
|
|
-The syslog facility 'daemon' will be used unless a facility name is supplied.
|
|
+The syslog facility 'authpriv' will be used unless a facility name is supplied.
|
|
(Facilities are not supported on Win32.)
|
|
|
|
Case is ignored for both facilities and levels.
|
|
diff -up stunnel-5.50/src/options.c.authpriv stunnel-5.50/src/options.c
|
|
--- stunnel-5.50/src/options.c.authpriv 2019-01-14 12:15:05.136100146 +0100
|
|
+++ stunnel-5.50/src/options.c 2019-01-14 12:16:25.537727511 +0100
|
|
@@ -1745,8 +1745,12 @@ NOEXPORT char *parse_service_option(CMD
|
|
case CMD_SET_DEFAULTS:
|
|
section->log_level=LOG_NOTICE;
|
|
#if !defined (USE_WIN32) && !defined (__vms)
|
|
+#if defined(LOG_AUTHPRIV)
|
|
+ new_global_options.log_facility=LOG_AUTHPRIV;
|
|
+#else
|
|
new_global_options.log_facility=LOG_DAEMON;
|
|
#endif
|
|
+#endif
|
|
break;
|
|
case CMD_SET_COPY:
|
|
section->log_level=new_service_options.log_level;
|