From: Andre Noll Date: Sat, 3 Jan 2015 16:16:02 +0000 (+0000) Subject: Shut down the signal subsystem on exit. X-Git-Tag: v0.1.6~10 X-Git-Url: http://git.tuebingen.mpg.de/?a=commitdiff_plain;h=31638f52b0fe420f4881dca4afdecf7132d1ab91;p=dss.git Shut down the signal subsystem on exit. No biggy since we exit anyway a few lines later, but still.. --- diff --git a/dss.c b/dss.c index 006cd27..c641561 100644 --- a/dss.c +++ b/dss.c @@ -1520,6 +1520,7 @@ int main(int argc, char **argv) if (ret < 0) goto out; ret = call_command_handler(); + signal_shutdown(); out: if (ret < 0) DSS_EMERG_LOG(("%s\n", dss_strerror(-ret)));