]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
exit(1), not exit(-1)
authorBrian Wellington <source@isc.org>
Wed, 14 Mar 2001 06:32:15 +0000 (06:32 +0000)
committerBrian Wellington <source@isc.org>
Wed, 14 Mar 2001 06:32:15 +0000 (06:32 +0000)
lib/isc/unix/app.c

index 382ae4e33cef22e3a6c389374c03ebeac4e3601b..aa99ab84f42c5d1a2600d2ab9b8e751bdca29d31 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: app.c,v 1.36.2.2 2001/03/14 01:24:53 bwelling Exp $ */
+/* $Id: app.c,v 1.36.2.3 2001/03/14 06:32:15 bwelling Exp $ */
 
 #include <config.h>
 
@@ -495,7 +495,7 @@ isc_app_run(void) {
                }
 
                if (want_shutdown && blocked)
-                       exit(-1);
+                       exit(1);
        }
 
 #else /* ISC_PLATFORM_USETHREADS */