1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-28 12:16:37 +02:00

Exit with a successful return code upon receipt of SIGTERM (#125)

This commit is contained in:
Robert Scheck
2020-10-20 07:26:57 +02:00
committed by GitHub
parent ebe0a43828
commit 831737f13e
+1 -1
View File
@@ -96,7 +96,7 @@ void s_die()
#else
unload_all_modules();
unlink(conf_files ? conf_files->pid_file : IRCD_PIDFILE);
exit(-1);
exit(0);
#endif
}