From d23940bb9d366037564c2cce3e68adf9c3379182 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Wed, 9 Jun 2021 21:56:05 -0400 Subject: Move the main loop code into an if statement. This was done to make it easier to understand what's going on. --- pullreqd.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'pullreqd.c') diff --git a/pullreqd.c b/pullreqd.c index 26c14e8..1e9f8e1 100644 --- a/pullreqd.c +++ b/pullreqd.c @@ -82,19 +82,24 @@ int init_config(char *config_file, config **cfg) { int main(int argc, char **argv) { config *cfg; char *config_file = "test.conf"; - int done = 0; int config_read = 0; + int exit_status = EXIT_FAILURE; init_daemon(1, "/"); syslog(LOG_NOTICE, "pullreqd started."); /* Read the config file. */ config_read = init_config(config_file, &cfg); - /* Immediatly exit, if we failed to read the config file. */ - done = !config_read; - for (; !done;) { - break; + /* Did we successfully read the config file? */ + if (config_read) { + int done = 0; + + for (; !done;) { + break; + } + + exit_status = EXIT_SUCCESS; } syslog(LOG_NOTICE, "pullreqd stopped."); -- cgit v1.2.3-13-gbd6f