2010-10-04 15:54:02 +00:00
|
|
|
diff -urNp stunnel-4.34-orig/doc/stunnel.8 stunnel-4.34/doc/stunnel.8
|
|
|
|
--- stunnel-4.34-orig/doc/stunnel.8 2010-10-04 11:28:17.197406956 -0400
|
|
|
|
+++ stunnel-4.34/doc/stunnel.8 2010-10-04 11:29:54.500398560 -0400
|
2010-03-29 19:25:15 +00:00
|
|
|
@@ -165,7 +165,7 @@ info (6), or debug (7). All logs for th
|
2009-12-09 22:08:00 +00:00
|
|
|
all levels numerically less than it will be shown. Use \fBdebug = debug\fR or
|
|
|
|
\&\fBdebug = 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.
|
2010-10-04 15:54:02 +00:00
|
|
|
diff -urNp stunnel-4.34-orig/doc/stunnel.html stunnel-4.34/doc/stunnel.html
|
|
|
|
--- stunnel-4.34-orig/doc/stunnel.html 2010-10-04 11:28:17.198407489 -0400
|
|
|
|
+++ stunnel-4.34/doc/stunnel.html 2010-10-04 11:30:24.549148361 -0400
|
2010-03-29 19:25:15 +00:00
|
|
|
@@ -190,7 +190,7 @@ emerg (0), alert (1), crit (2), err (3),
|
2009-04-16 17:54:31 +00:00
|
|
|
info (6), or debug (7). All logs for the specified level and
|
|
|
|
all levels numerically less than it will be shown. Use <strong>debug = debug</strong> or
|
|
|
|
<strong>debug = 7</strong> for greatest debugging output. The default is notice (5).</p>
|
|
|
|
-<p>The syslog facility 'daemon' will be used unless a facility name is supplied.
|
|
|
|
+<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>
|
|
|
|
</dd>
|
2010-10-04 15:54:02 +00:00
|
|
|
diff -urNp stunnel-4.34-orig/doc/stunnel.pod stunnel-4.34/doc/stunnel.pod
|
|
|
|
--- stunnel-4.34-orig/doc/stunnel.pod 2010-10-04 11:28:17.197406956 -0400
|
|
|
|
+++ stunnel-4.34/doc/stunnel.pod 2010-10-04 11:31:02.659398482 -0400
|
2010-03-29 19:25:15 +00:00
|
|
|
@@ -132,7 +132,7 @@ info (6), or debug (7). All logs for th
|
2005-03-16 20:45:02 +00:00
|
|
|
all levels numerically less than it will be shown. Use B<debug = debug> or
|
|
|
|
B<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.
|
2010-10-04 15:54:02 +00:00
|
|
|
diff -urNp stunnel-4.34-orig/src/options.c stunnel-4.34/src/options.c
|
|
|
|
--- stunnel-4.34-orig/src/options.c 2010-10-04 11:28:17.192398749 -0400
|
|
|
|
+++ stunnel-4.34/src/options.c 2010-10-04 11:35:34.047161189 -0400
|
|
|
|
@@ -140,8 +140,12 @@ static char *parse_global_option(CMD cmd
|
2005-03-16 20:45:02 +00:00
|
|
|
case CMD_INIT:
|
2010-01-26 20:15:10 +00:00
|
|
|
new_global_options.debug_level=LOG_NOTICE;
|
2005-03-16 20:45:02 +00:00
|
|
|
#if !defined (USE_WIN32) && !defined (__vms)
|
|
|
|
+#if defined(LOG_AUTHPRIV)
|
2010-01-26 20:15:10 +00:00
|
|
|
+ new_global_options.facility=LOG_AUTHPRIV;
|
2005-03-16 20:45:02 +00:00
|
|
|
+#else
|
2010-01-26 20:15:10 +00:00
|
|
|
new_global_options.facility=LOG_DAEMON;
|
2005-03-16 20:45:02 +00:00
|
|
|
#endif
|
|
|
|
+#endif
|
|
|
|
break;
|
|
|
|
case CMD_EXEC:
|
|
|
|
if(strcasecmp(opt, "debug"))
|