pid file. Thanks Thomas Morin <thomas.morin@enst-bretagne.fr>.
+Thu Jul 11 22:19:12 CDT 2002 Adam Heath <doogie@debian.org>
+
+ * utils/start-stop-daemon.c: Fix test inversion in start-stop-daemon,
+ when checking the pid given in a pid file. Thanks Thomas Morin
+ <thomas.morin@enst-bretagne.fr>.
+
Sun Jul 7 14:54:44 CDT 2002 Adam Heath <doogie@debian.org>
* debian/rules: Fix install location of /usr/lib/dpkg/methods.
* Move dselect.cfg to dselect package. Closes: Bug#152132
* Install methods into /usr/lib/dpkg/methods, not /usr/lib/dpkg. Closes:
#152161.
+ * Fix test inversion in start-stop-daemon, when checking the pid given in
+ a pid file. Thanks Thomas Morin <thomas.morin@enst-bretagne.fr>.
+ Closes: #152270.
-- Wichert Akkerman <wakkerma@debian.org> UNRELEASED
return;
if (cmdname && !pid_is_cmd(pid, cmdname))
return;
- if (start && pid_is_running(pid))
+ if (start && !pid_is_running(pid))
return;
push(&found, pid);
}