diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-11-04 15:48:36 +0100 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-11-14 11:08:14 +0100 |
commit | 41c33eeb44d1b1a4b476810757f7b91032950439 (patch) | |
tree | 2f38da227b9f554d0eab35fdb7c8cfd18e9d88d2 /src/dmon.c | |
parent | 14b6ae79a25106501a30693889b1c03abd56c8c1 (diff) | |
download | calcurse-41c33eeb44d1b1a4b476810757f7b91032950439.zip |
Use a global configuration variable
This is one of the few valid use cases for a global variable. No need to
make it pseudo-local and pass it from one function to another.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/dmon.c')
-rw-r--r-- | src/dmon.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -154,8 +154,6 @@ daemonize (int status) void dmon_start (int parent_exit_status) { - struct conf conf; - if (!daemonize (parent_exit_status)) DMON_ABRT (_("Cannot daemonize, aborting\n")); @@ -165,7 +163,7 @@ dmon_start (int parent_exit_status) if (!io_file_exist (path_conf)) DMON_ABRT (_("Could not access \"%s\": %s\n"), path_conf, strerror (errno)); - custom_load_conf (&conf); + custom_load_conf (); if (!io_file_exist (path_apts)) DMON_ABRT (_("Could not access \"%s\": %s\n"), |