corrected exit code handling

This commit is contained in:
Gunter Labes 2008-10-28 17:24:45 +00:00
parent f8af3c190a
commit a323ecdd53

View file

@ -67,7 +67,7 @@ static void exit_sighup(int signal) {
static void exit_sigint(int signal) {
assert(signal == SIGINT);
LOG_CS << "SIGINT caught, exiting without cleanup immediately.\n";
exit(1);
exit(0);
}
static void exit_sigterm(int signal) {