retab
authorkremlin <ian@kremlin.cc>
Thu, 26 Jun 2014 23:55:42 +0000 (18:55 -0500)
committerkremlin <ian@kremlin.cc>
Thu, 26 Jun 2014 23:55:42 +0000 (18:55 -0500)
src/config.c
src/main.c

index 480bcf6fe8ab17c4ea8f4d34dc5ae60808a3f6d1..21396a522c8e0f91de4ade1972a2422ecb33b829 100644 (file)
@@ -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))
index e8127f06545141f8c86e8e4077111eae8f5596c2..f8cb5efafd225102e3178566d0f9dc8c8eea3135 100644 (file)
 #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() {