commit - 19d20c12ec99892dbf57f969d478e4108851679e
commit + b8d1864865aa67f39a11bb4f863540a31e69e03a
blob - 4695b254224421da1c01284653f9c8469a11dce4
blob + ff1fed836b983907bed2d75f26d0d48b47d78a6b
--- gotwebd/gotwebd.c
+++ gotwebd/gotwebd.c
int gotwebd_configure(struct gotwebd *, uid_t, gid_t);
void gotwebd_configure_done(struct gotwebd *);
void gotwebd_sighdlr(int sig, short event, void *arg);
-void gotwebd_shutdown(int);
+void gotwebd_shutdown(void);
void gotwebd_dispatch_server(int, short, void *);
void gotwebd_dispatch_gotweb(int, short, void *);
break;
case SIGTERM:
case SIGINT:
- gotwebd_shutdown(0);
+ gotwebd_shutdown();
break;
default:
fatalx("unexpected signal");
if (proc_type == GOTWEBD_PROC_PARENT) {
if (parse_config(env->gotwebd_conffile, env) == -1)
- gotwebd_shutdown(1);
+ exit(1);
if (no_action) {
fprintf(stderr, "configuration OK\n");
- gotwebd_shutdown(0);
+ exit(0);
}
if (env->user)
log_debug("%s gotwebd exiting", getprogname());
- gotwebd_shutdown(0);
return (0);
}
}
void
-gotwebd_shutdown(int exit_code)
+gotwebd_shutdown(void)
{
struct gotwebd *env = gotwebd_env;
pid_t pid;
free(gotwebd_env);
log_warnx("gotwebd terminating");
- exit(exit_code);
+ exit(0);
}