From: Chris Lawrence Date: Fri, 25 Aug 2006 00:08:02 +0000 (-0500) Subject: lsb 3.1-15 Debian release. X-Git-Tag: archive/raspbian/10.2018112800+rpi1^2~237 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=648acece2f33735bd2ac07bcffec50332294961f;p=lsb.git lsb 3.1-15 Debian release. --- diff --git a/debian/changelog b/debian/changelog index 3937a92..0045663 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +lsb (3.1-15) unstable; urgency=low + + * Fix assignment to $opt in pidofproc(). (Closes: #384540) + + -- Chris Lawrence Thu, 24 Aug 2006 19:08:02 -0500 + lsb (3.1-14) unstable; urgency=low * Document LSB init functions more thoroughly in lsb-base's README.Debian. diff --git a/debian/control b/debian/control index 6e9c4be..e09ba80 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: lsb Section: misc Priority: extra Maintainer: Chris Lawrence -Build-Depends: debhelper (>= 4.1.13), po-debconf (>= 0.5.0), dpkg-dev (>= 1.10), python-central (>= 0.5), python-all-dev +Build-Depends: debhelper (>= 5.0.37.2), po-debconf (>= 0.5.0), dpkg-dev (>= 1.10), python-central (>= 0.5), python-all-dev Standards-Version: 3.7.2 XS-Python-Version: current diff --git a/debian/pycompat b/debian/pycompat new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/debian/pycompat @@ -0,0 +1 @@ +2 diff --git a/init-functions b/init-functions index 028f88a..099e64e 100644 --- a/init-functions +++ b/init-functions @@ -63,7 +63,7 @@ pidofproc () { OPTIND=1 while getopts p: opt ; do - case $opt in + case "$opt" in p) pidfile="$OPTARG"; specified=1;; esac done @@ -101,7 +101,7 @@ killproc () { OPTIND=1 while getopts p: opt ; do - case $i in + case "$opt" in p) pidfile="$OPTARG"; specified=1;; esac done