stunnel/stunnel-4-authpriv.patch
Avesh Agarwal 31b6a6f343 New upstream realease 4.35
Updated authpriv and sample patches to match the new release
Committer: Avesh Agarwal <avagarwa@redhat.com>
2011-04-04 14:19:37 -04:00

53 lines
2.8 KiB
Diff

diff -urNp stunnel-4.35-orig/doc/stunnel.8 stunnel-4.35-current/doc/stunnel.8
--- stunnel-4.35-orig/doc/stunnel.8 2011-02-05 16:36:59.000000000 -0500
+++ stunnel-4.35-current/doc/stunnel.8 2011-04-04 13:44:09.715498378 -0400
@@ -165,7 +165,7 @@ info (6), or debug (7). All logs for th
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.
diff -urNp stunnel-4.35-orig/doc/stunnel.html stunnel-4.35-current/doc/stunnel.html
--- stunnel-4.35-orig/doc/stunnel.html 2011-02-05 16:36:59.000000000 -0500
+++ stunnel-4.35-current/doc/stunnel.html 2011-04-04 13:44:09.717498254 -0400
@@ -190,7 +190,7 @@ emerg (0), alert (1), crit (2), err (3),
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>
diff -urNp stunnel-4.35-orig/doc/stunnel.pod stunnel-4.35-current/doc/stunnel.pod
--- stunnel-4.35-orig/doc/stunnel.pod 2011-02-05 16:36:31.000000000 -0500
+++ stunnel-4.35-current/doc/stunnel.pod 2011-04-04 13:44:09.719498136 -0400
@@ -132,7 +132,7 @@ info (6), or debug (7). All logs for th
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.
diff -urNp stunnel-4.35-orig/src/options.c stunnel-4.35-current/src/options.c
--- stunnel-4.35-orig/src/options.c 2011-01-24 17:30:07.000000000 -0500
+++ stunnel-4.35-current/src/options.c 2011-04-04 13:44:09.720498079 -0400
@@ -140,8 +140,12 @@ static char *parse_global_option(CMD cmd
case CMD_INIT:
new_global_options.debug_level=LOG_NOTICE;
#if !defined (USE_WIN32) && !defined (__vms)
+#if defined(LOG_AUTHPRIV)
+ new_global_options.facility=LOG_AUTHPRIV;
+#else
new_global_options.facility=LOG_DAEMON;
#endif
+#endif
break;
case CMD_EXEC:
if(strcasecmp(opt, "debug"))