Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 342591
Collapse All | Expand All

(-)a/Mail-SpamAssassin-3.3.1/spamd/spamd.raw (-1 / +3 lines)
Lines 443-452 Link Here
443
#  socket of 'none' means as much as --syslog=null. Sounds complicated? It is.
443
#  socket of 'none' means as much as --syslog=null. Sounds complicated? It is.
444
#  But it works.
444
#  But it works.
445
# )
445
# )
446
my $log_socket = lc($opt{'syslog-socket'});
446
my $log_socket = $opt{'syslog-socket'};
447
447
448
if (!defined $log_socket || $log_socket eq '') {
448
if (!defined $log_socket || $log_socket eq '') {
449
  $log_socket = am_running_on_windows() ? 'none' : 'unix';
449
  $log_socket = am_running_on_windows() ? 'none' : 'unix';
450
} else {
451
    $log_socket = lc $log_socket;
450
}
452
}
451
453
452
# This is the default log file; it can be changed on the command line
454
# This is the default log file; it can be changed on the command line

Return to bug 342591