2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

exit(1), not exit(-1)

This commit is contained in:
Brian Wellington
2001-03-14 06:31:17 +00:00
parent 52c17deb58
commit 2f02f32f04

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: app.c,v 1.39 2001/01/17 19:48:45 halley Exp $ */
/* $Id: app.c,v 1.40 2001/03/14 06:31:17 bwelling Exp $ */
#include <config.h>
@@ -496,7 +496,7 @@ isc_app_run(void) {
}
if (want_shutdown && blocked)
exit(-1);
exit(1);
}
#else /* ISC_PLATFORM_USETHREADS */