Update to 2.22

This commit is contained in:
Mathieu Arnold 2009-02-12 16:14:24 +00:00
parent 672f2d088e
commit f19c74a488
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=228117
3 changed files with 4 additions and 24 deletions

View file

@ -6,7 +6,7 @@
#
PORTNAME= Log-Dispatch
PORTVERSION= 2.21
PORTVERSION= 2.22
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-

View file

@ -1,3 +1,3 @@
MD5 (Log-Dispatch-2.21.tar.gz) = a9aeb68cbf45f99ab63985719f112ee7
SHA256 (Log-Dispatch-2.21.tar.gz) = 962bff2bdc74da7443dc95dbc1b0be8e67e7f35393c5fa77ca06faa271b1e76a
SIZE (Log-Dispatch-2.21.tar.gz) = 31756
MD5 (Log-Dispatch-2.22.tar.gz) = 28c006a56d82335ed5c2ac31443ecbe3
SHA256 (Log-Dispatch-2.22.tar.gz) = 4bd4bf48244c2742d9f63fe7b04ec7b9e6e14a76da64d6a56e8a284487a61dd0
SIZE (Log-Dispatch-2.22.tar.gz) = 32582

View file

@ -1,20 +0,0 @@
--- lib/Log/Dispatch/Syslog.pm.orig 2008-02-07 00:18:42.000000000 +0100
+++ lib/Log/Dispatch/Syslog.pm 2008-03-20 11:23:50.000000000 +0100
@@ -40,7 +40,7 @@
facility => { type => SCALAR,
default => 'user' },
socket => { type => SCALAR,
- default => 'unix' },
+ default => undef },
} );
$self->{ident} = $p{ident};
@@ -57,7 +57,7 @@
'ALERT',
'EMERG' ];
- Sys::Syslog::setlogsock $self->{socket};
+ Sys::Syslog::setlogsock $self->{socket} if defined $self->{socket};
}
sub log_message