diff options
author | kremlin- <ian@kremlin.cc> | 2014-06-13 10:01:30 +0800 |
---|---|---|
committer | kremlin- <ian@kremlin.cc> | 2014-06-13 10:01:30 +0800 |
commit | 1c38000a88055e0893fb0b6b41a490109348b950 (patch) | |
tree | 84f3b3fadeb76f3113a031158e9664745d3d589a /src/main.c | |
parent | 71e3eef18b982a31f57a90b850de612dd4b2d7f8 (diff) | |
download | systembsd-1c38000a88055e0893fb0b6b41a490109348b950.tar systembsd-1c38000a88055e0893fb0b6b41a490109348b950.tar.gz systembsd-1c38000a88055e0893fb0b6b41a490109348b950.tar.bz2 systembsd-1c38000a88055e0893fb0b6b41a490109348b950.tar.lz systembsd-1c38000a88055e0893fb0b6b41a490109348b950.tar.xz systembsd-1c38000a88055e0893fb0b6b41a490109348b950.tar.zst systembsd-1c38000a88055e0893fb0b6b41a490109348b950.zip |
fleshed out config and hostnamed more, structure for other 3 daemons..
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,10 +1,10 @@ /* debugging */ -//#define INSTALL 1 +#define INSTALL 1 //#define NO_BUILTIN_XML 1 /* end debugging */ #include <gio/gio.h> -#include <config.c> +#include "config.c" #include "interfaces/hostnamed/hostnamed.c" //#include "main.h" @@ -17,17 +17,17 @@ static gboolean install_conf() { int main() { //TODO cleanup #ifdef INSTALL - if(!install_conf()) { + if(!config_init()) { g_printf("%s\n", "FAILED to install configs in /etc/!"); - exit(1); + return 1; } #endif //TODO cleanup #if (defined NO_BUILTIN_XML && defined INSTALL) - if(!install_conf()) { + if(!config_init()) { g_printf("%s\n", "FAILED to install xml configs!"); - exit(1); + return 1; } #else #endif |