+lsb (3.1-15) unstable; urgency=low
+
+ * Fix assignment to $opt in pidofproc(). (Closes: #384540)
+
+ -- Chris Lawrence <lawrencc@debian.org> 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.
Section: misc
Priority: extra
Maintainer: Chris Lawrence <lawrencc@debian.org>
-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
OPTIND=1
while getopts p: opt ; do
- case $opt in
+ case "$opt" in
p) pidfile="$OPTARG"; specified=1;;
esac
done
OPTIND=1
while getopts p: opt ; do
- case $i in
+ case "$opt" in
p) pidfile="$OPTARG"; specified=1;;
esac
done