]> git.pld-linux.org Git - packages/rc-scripts.git/blob - start-stop-daemon-pid-check.patch
- patch for check if pid was killed by start-stop-daemon; rel 3
[packages/rc-scripts.git] / start-stop-daemon-pid-check.patch
1 --- src/start-stop-daemon.c     2004-07-19 20:56:49.000000000 +0200
2 +++ src/start-stop-daemon.c     2004-08-28 21:00:33.000000000 +0200
3 @@ -734,7 +734,8 @@
4                 return;
5         if (start && !pid_is_running(pid))
6                 return;
7 -       push(&found, pid);
8 +       if (stop && pid_is_running(pid))
9 +               push(&found, pid);
10  }
11  
12  static void
This page took 0.021429 seconds and 3 git commands to generate.