c32fee98f9
and removed interactive portion of installation process; bugfixes. See Changes for complete list. PR: ports/58071 Submitted by: James Ainslie <james@starjuice.net> Maintainer timeout: 4 months
22 lines
554 B
Text
22 lines
554 B
Text
$FreeBSD$
|
|
|
|
--- lib/Log/Dispatch/Syslog.pm.orig Sat Jun 22 01:10:31 2002
|
|
+++ lib/Log/Dispatch/Syslog.pm Mon Jul 1 06:23:54 2002
|
|
@@ -46,7 +46,7 @@
|
|
facility => { type => SCALAR,
|
|
default => 'user' },
|
|
socket => { type => SCALAR,
|
|
- default => 'unix' },
|
|
+ default => undef },
|
|
} );
|
|
|
|
$self->{ident} = $p{ident};
|
|
@@ -63,7 +63,7 @@
|
|
'ALERT',
|
|
'EMERG' ];
|
|
|
|
- Sys::Syslog::setlogsock $self->{socket};
|
|
+ Sys::Syslog::setlogsock $self->{socket} if defined $self->{socket};
|
|
}
|
|
|
|
sub log_message
|