runit

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 4a061d249295e41c6b8238c6925b387a8c9c26e0
parent b79b13ae49bb4aa457d589eb49784a06c2d2b631
Author: Gerrit Pape <pape@smarden.org>
Date:   Sun,  4 May 2003 09:41:10 +0000

minor.

Diffstat:
Mpackage/CHANGES | 1+
Msrc/runsvctrl.c | 2+-
Msrc/runsvstat.c | 2+-
3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/package/CHANGES b/package/CHANGES @@ -2,6 +2,7 @@ runit 0.9.3 Sun, 04 May 2003 11:30:58 +0200 * Makefile: actually build runsvstat, runsvctrl before installing them, fixes build failure (thx Lukas Beeler). + * runsvctrl.c, runsvstat.c: use _exit(). runit 0.9.2 Sat, 03 May 2003 17:40:23 +0200 diff --git a/src/runsvctrl.c b/src/runsvctrl.c @@ -77,5 +77,5 @@ int main(int argc, char **argv) { } } if (rc > 100) rc =100; - exit(rc); + _exit(rc); } diff --git a/src/runsvstat.c b/src/runsvstat.c @@ -163,5 +163,5 @@ int main(int argc, char **argv) { } } if (rc > 100) rc =100; - exit(rc); + _exit(rc); }