replace C++ style comments
authorkremlin- <ian@kremlin.cc>
Thu, 26 Jun 2014 23:50:14 +0000 (18:50 -0500)
committerkremlin- <ian@kremlin.cc>
Thu, 26 Jun 2014 23:50:14 +0000 (18:50 -0500)
src/config.c
src/interfaces/hostnamed/hostnamed.c
src/main.c

index 7469e676534e14fb5dd0716b4ae5abde1d5da359..480bcf6fe8ab17c4ea8f4d34dc5ae60808a3f6d1 100644 (file)
@@ -41,7 +41,7 @@ gboolean set_option(gchar *key, gchar *value, gchar *group) {
     if(!g_key_file_get_string(config, group, key, NULL))
         return FALSE;
 
-    //TODO safteycheck value
+    /* TODO safteycheck value */
     g_key_file_set_string(config, group, key, value);
     return TRUE;
 }
@@ -165,7 +165,7 @@ gboolean init_xml() {
 
 void clean_config() {
 
-    //TODO g_ptr_array all of this
+    /* TODO g_ptr_array all of this */
     g_free(config);
     g_free(data_dir);
     g_close(config_descr, NULL);
index 522d750959eadf90b853d641b74c299b422232f4..9f152dfb22a781121c51091e4571e66cca8b3088 100644 (file)
@@ -51,7 +51,7 @@ static void on_name_lost(GDBusConnection *conn,
 
     hostnamed_mem_clean();
 
-    //TODO exit through g_main_loop properly...
+    /* TODO exit through g_main_loop properly... */
 }
 
 /* safe call to try and start hostnamed */
@@ -81,7 +81,7 @@ GError *hostnamed_init() {
                                     NULL,
                                     NULL);
 
-    //TODO: malloc and return reference as if a main() closed 
+    /* TODO: malloc and return reference as if a main() closed */
     return err;
 }
 
@@ -91,14 +91,12 @@ void hostnamed_mem_clean() {
     g_ptr_array_foreach(hostnamed_freeable, (GFunc) g_free, NULL);
 }
 
-//TODO figure out DMI variables on obsd
+/* TODO figure out DMI variables on obsd */
 /*static gchar *guess_icon_name() {
 
     gchar *filebuf = NULL;
     gchar *ret = NULL;
 
-    //TODO vm check
-
     #if defined(__i386__) || defined(__x86_64__)
     
        Taken with a few minor changes from systemd's hostnamed.c,
index 3cf0ee0b26f26124930a7c724294299a6e3861b1..e8127f06545141f8c86e8e4077111eae8f5596c2 100644 (file)
@@ -45,7 +45,7 @@ int main() {
     
     if(!systemd_utils_init()) {
         g_printf("failed to init, are you root?\n");
-        return 1; //TODO errno properly. grep for all "return 1;"s, not TODO'ing each one
+        return 1; /* TODO errno properly. grep for all "return 1;"s, not TODO'ing each one */
     }
 
     hostnamed_init();