diff options
author | kremlin- <ian@kremlin.cc> | 2014-06-27 07:55:42 +0800 |
---|---|---|
committer | kremlin- <ian@kremlin.cc> | 2014-06-27 07:55:42 +0800 |
commit | 94dc7ef01374157347d95a4801704f5848649d83 (patch) | |
tree | 91d11bfcb20f878273dcd20550a24ad1ad4e9c0a | |
parent | 6981850a27c5d29b8e916e77d0f56a3a30489017 (diff) | |
download | systembsd-94dc7ef01374157347d95a4801704f5848649d83.tar systembsd-94dc7ef01374157347d95a4801704f5848649d83.tar.gz systembsd-94dc7ef01374157347d95a4801704f5848649d83.tar.bz2 systembsd-94dc7ef01374157347d95a4801704f5848649d83.tar.lz systembsd-94dc7ef01374157347d95a4801704f5848649d83.tar.xz systembsd-94dc7ef01374157347d95a4801704f5848649d83.tar.zst systembsd-94dc7ef01374157347d95a4801704f5848649d83.zip |
retab
-rw-r--r-- | src/config.c | 4 | ||||
-rw-r--r-- | src/main.c | 30 |
2 files changed, 17 insertions, 17 deletions
diff --git a/src/config.c b/src/config.c index 480bcf6..21396a5 100644 --- a/src/config.c +++ b/src/config.c @@ -62,7 +62,7 @@ gboolean config_init() { config_path = "/etc/systemd_compat.conf"; config_lstat_ret = g_lstat(config_path, config_lstat); - /* this should all be handled in the makefile + /* this should all be handled in the makefile * does conf exist? if(config_lstat_ret) { @@ -100,7 +100,7 @@ gboolean config_init() { if(g_access(config_path, W_OK)) { - g_printf("%s\n", "no write permissions for /etc/! exiting.."); + g_printf("%s\n", "no write permissions for /etc/! exiting.."); return FALSE; } else if(g_key_file_load_from_file(config, config_path, G_KEY_FILE_KEEP_COMMENTS, NULL)) @@ -22,21 +22,21 @@ #include "interfaces/hostnamed/hostnamed.c" gboolean systemd_utils_init() { - if(!config_init()) { - gchar *tmp; - tmp = "/etc/systemd_compat.conf"; - - g_printf("FAILED to open config %s!\n", tmp); - return FALSE; - } - /*if(!init_xml()) { - const gchar * const *tmp; - tmp = g_get_system_data_dirs(); - - g_printf("FAILED to install xml configs in %s!\n", tmp[0]); - return FALSE; - }*/ - return TRUE; + if(!config_init()) { + gchar *tmp; + tmp = "/etc/systemd_compat.conf"; + + g_printf("FAILED to open config %s!\n", tmp); + return FALSE; + } + /*if(!init_xml()) { + const gchar * const *tmp; + tmp = g_get_system_data_dirs(); + + g_printf("FAILED to install xml configs in %s!\n", tmp[0]); + return FALSE; + }*/ + return TRUE; } int main() { |