[SCM] Debian packaging of libnet-server-perl branch, master, updated. debian/2.007-2-2-g44d83ad
Xavier Guimard
x.guimard at free.fr
Fri Jun 21 04:15:02 UTC 2013
The following commit has been merged in the master branch:
commit b3ac5330f66fac4815c74ad7dfc6f76ce1198d4b
Author: Xavier Guimard <x.guimard at free.fr>
Date: Fri Jun 21 06:11:27 2013 +0200
Propagate confusion patch to all subs
Closes: #712714
diff --git a/debian/patches/correct-SIG-confusion.patch b/debian/patches/correct-SIG-confusion.patch
index d111143..523f676 100644
--- a/debian/patches/correct-SIG-confusion.patch
+++ b/debian/patches/correct-SIG-confusion.patch
@@ -3,7 +3,7 @@ Origin: vendor
Bug-Debian: http://bugs.debian.org/708180
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=85308
Reviewed-By: Xavier Guimard <x.guimard at free.fr>
-Last-Update: 2013-06-15
+Last-Update: 2013-06-20
--- a/lib/Net/Server/SIG.pm
+++ b/lib/Net/Server/SIG.pm
@@ -12,8 +12,30 @@ Last-Update: 2013-06-15
my $ref = ref($code_ref);
+ # Added by Debian maintainer to close #708180
-+ $sig = 'CLD' if ($sig eq 'CHLD');
++ $sig = 'CHLD' if ($sig eq 'CLD');
+
if (! $ref) {
if ($code_ref eq 'DEFAULT') {
delete $_SIG{$sig};
+@@ -66,6 +69,10 @@
+ sub check_sigs {
+ my @found;
+ foreach my $sig (keys %_SIG){
++
++ # Added by Debian maintainer to close #712714
++ $sig = 'CHLD' if ($sig eq 'CLD');
++
+ next if ! $_SIG{$sig};
+ $_SIG{$sig} = 0;
+ push @found, $sig;
+@@ -76,6 +83,10 @@
+
+ sub sig_is_registered {
+ my $sig = shift;
++
++ # Added by Debian maintainer to close #712714
++ $sig = 'CHLD' if ($sig eq 'CLD');
++
+ return $_SIG_SUB{$sig};
+ }
+
--
Debian packaging of libnet-server-perl
More information about the Pkg-perl-cvs-commits
mailing list