2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

return(1) rather than exit(1) from main() to shut up HP/UX

This commit is contained in:
David Lawrence
2000-05-08 20:06:05 +00:00
parent ab7c671292
commit edf7c005be

View File

@@ -1540,5 +1540,9 @@ main(int argc, char **argv) {
do_lookup_udp(lookup);
isc_app_run();
free_lists();
exit (1); /* Should never get here. */
/*
* Should never get here.
*/
return (1);
}