config-parser: Fix indentation
authorSimon McVittie <simon.mcvittie@collabora.co.uk>
Mon, 13 Feb 2017 20:08:07 +0000 (20:08 +0000)
committerSimon McVittie <simon.mcvittie@collabora.co.uk>
Fri, 17 Feb 2017 12:17:56 +0000 (12:17 +0000)
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=99825
Reviewed-by: Philip Withnall <withnall@endlessm.com>
[smcv: also correct the same thing for system service directories]
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
bus/config-parser.c

index cc5690d..08ec895 100644 (file)
@@ -840,8 +840,8 @@ start_busconfig_child (BusConfigParser   *parser,
           return FALSE;
         }
 
-        while ((link = _dbus_list_pop_first_link (&dirs)))
-          service_dirs_append_link_unique_or_free (&parser->service_dirs, link);
+      while ((link = _dbus_list_pop_first_link (&dirs)))
+        service_dirs_append_link_unique_or_free (&parser->service_dirs, link);
 
       return TRUE;
     }
@@ -866,8 +866,8 @@ start_busconfig_child (BusConfigParser   *parser,
           return FALSE;
         }
 
-        while ((link = _dbus_list_pop_first_link (&dirs)))
-          service_dirs_append_link_unique_or_free (&parser->service_dirs, link);
+      while ((link = _dbus_list_pop_first_link (&dirs)))
+        service_dirs_append_link_unique_or_free (&parser->service_dirs, link);
 
       return TRUE;
     }