summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard A Nelson (Rick) <cowboy@debian.org>2008-05-19 15:20:00 +0000
committerAndreas Beckmann <debian@abeckmann.de>2012-10-01 20:07:41 +0200
commitc0720aa475c782c27a17942561685db0e730a77d (patch)
treea37607bf6afdf4be99bb15127220d1694c0c3399
parent35d53bb2424f72f59e31689e4a6cd01833683287 (diff)
downloadsendmail-c0720aa475c782c27a17942561685db0e730a77d.tar.gz
Imported Debian patch 8.14.3-4debian/8.14.3-4
-rw-r--r--debian/build/autoconf.mk4
-rw-r--r--debian/changelog6
-rw-r--r--debian/local/Parse_conf.pm.in4
3 files changed, 10 insertions, 4 deletions
diff --git a/debian/build/autoconf.mk b/debian/build/autoconf.mk
index 8db1870..04fef57 100644
--- a/debian/build/autoconf.mk
+++ b/debian/build/autoconf.mk
@@ -2,7 +2,7 @@
#------------------------------------------------------------------------------
# vim: syntax=make
#
-# $Sendmail: autoconf.mk,v 8.14.3 2008-05-18 15:55:48 cowboy Exp $
+# $Sendmail: autoconf.mk,v 8.14.3 2008-05-19 08:22:49 cowboy Exp $
#
# Copyright (c) 1998-2008 Richard Nelson. All Rights Reserved.
#
@@ -16,7 +16,7 @@
# on Debian slink, potato, woody, testing, sid, ...
# but the generated file is customized to the version noted above.
#
-# Richard Nelson <cowboy@debian.org> 2008-05-18 15:55:48 (-0700)
+# Richard Nelson <cowboy@debian.org> 2008-05-19 08:22:49 (-0700)
#------------------------------------------------------------------------------
#SHELL := /bin/sh -x
diff --git a/debian/changelog b/debian/changelog
index 52e20f9..c8daa2d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+sendmail (8.14.3-4) unstable; urgency=low
+
+ * Redo the Perl 5.10 fix so that it sticks this time
+
+ -- Richard A Nelson (Rick) <cowboy@debian.org> Mon, 19 May 2008 15:20:00 -0000
+
sendmail (8.14.3-3) unstable; urgency=low
* wtf?!? how did libdb2-dev windup there... Closes: #481733
diff --git a/debian/local/Parse_conf.pm.in b/debian/local/Parse_conf.pm.in
index 8b8bc3e..ecb13a7 100644
--- a/debian/local/Parse_conf.pm.in
+++ b/debian/local/Parse_conf.pm.in
@@ -260,7 +260,7 @@ sub update_values {
else {
$tmpval = '[';
foreach my $entry (@{$var}) {
- foreach my $ndx ($[ .. $#{@{$entry}}) {
+ foreach my $ndx ($[ .. $#{$entry}) {
@{$entry}[$ndx] =~ s/'/\\'/g;
};
@{$entry}[0] =~ s/^(\d+)$/$1m/;
@@ -883,7 +883,7 @@ EOT
else {
print $ofh 'AGE_DATA="[\\',"\n";
foreach my $entry (@{$var}) {
- foreach my $ndx ($[ .. $#{@{$entry}}) {
+ foreach my $ndx ($[ .. $#{$entry}) {
@{$entry}[$ndx] =~ s/'/\\'/g;
};
print $ofh "['",join("', '",@{$entry}),"'],\\\n";