summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shuler <michael@pbandjelly.org>2011-09-17 17:33:29 -0500
committerMichael Shuler <michael@pbandjelly.org>2011-09-17 17:33:29 -0500
commit4a8d52eab45f7b1ff3b127d9d7386ab98a33d7c5 (patch)
tree6c8f247ed693c021119c7bb0b5c7113098396a7b
parent5cb5dbed0874ea345b2ad8a3357a3f635c65c693 (diff)
downloadca-certificates-4a8d52eab45f7b1ff3b127d9d7386ab98a33d7c5.tar.gz
Import Debian version 20090814+nmu2debian/20090814+nmu2
-rw-r--r--debian/changelog8
-rw-r--r--debian/postinst4
2 files changed, 10 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 3d2606c..bbc95f8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+ca-certificates (20090814+nmu2) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Fixes buggy shell functions included in the postinst script.
+ (Closes: #591607)
+
+ -- Maximiliano Curia <maxy@debian.org> Fri, 13 Aug 2010 20:16:21 -0300
+
ca-certificates (20090814+nmu1) unstable; urgency=low
* Non-maintainer upload.
diff --git a/debian/postinst b/debian/postinst
index 35e1ef3..7113b68 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -21,13 +21,13 @@
# `abort-remove' or `abort-deconfigure'.
each_value() {
- echo "$l" |tr ',' '\n' | sed -e 's/^[[:space:]]*//'
+ echo "$1" |tr ',' '\n' | sed -e 's/^[[:space:]]*//'
}
memberp() {
m="$1"
l="$2"
- each_value "$1" | grep -q "^$m\$"
+ each_value "$l" | grep -q "^$m\$"
}
delca() {