Minor coding style update
authorMarcel Holtmann <marcel@holtmann.org>
Sat, 8 May 2010 10:58:30 +0000 (12:58 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Sat, 8 May 2010 10:58:30 +0000 (12:58 +0200)
src/resolver.c

index 4a9db26..5caf7a8 100644 (file)
@@ -349,8 +349,7 @@ static void resolvfile_remove_entries(GList *entries)
        for (list = entries; list; list = list->next) {
                struct resolvfile_entry *entry = list->data;
 
-               resolvfile_list = g_list_remove(
-                                       resolvfile_list, entry);
+               resolvfile_list = g_list_remove(resolvfile_list, entry);
 
                g_free(entry->server);
                g_free(entry->domain);
@@ -372,9 +371,10 @@ static int resolvfile_export(void)
        content = g_string_new("# Generated by Connection Manager\n"
                                                "options edns0\n");
 
-       /* Nameservers are added in reverse so that the most recently appended
-        * entry is the primary nameserver.  No more than MAXNS nameservers are
-        * used.
+       /*
+        * Nameservers are added in reverse so that the most recently
+        * appended entry is the primary nameserver. No more than MAXNS
+        * nameservers are used.
         */
        for (count = 0, list = g_list_last(resolvfile_list);
                                                list && (count < MAXNS);