]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core: break lines in comments
authorLennart Poettering <lennart@poettering.net>
Tue, 9 Oct 2018 15:16:55 +0000 (17:16 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 9 Oct 2018 17:43:43 +0000 (19:43 +0200)
src/core/manager.c

index cbb9ec6924b2c469df9fcf06f0c1346a47b97be9..97e693a58c664d4c4e6ca00fd9790ec53bc34358 100644 (file)
@@ -1612,9 +1612,8 @@ int manager_startup(Manager *m, FILE *serialization, FDSet *fds) {
 
         manager_build_unit_path_cache(m);
 
-        /* If we will deserialize make sure that during enumeration
-         * this is already known, so we increase the counter here
-         * already */
+        /* If we will deserialize make sure that during enumeration this is already known, so we increase the counter
+         * here already */
         if (serialization)
                 m->n_reloading++;
 
@@ -1631,14 +1630,11 @@ int manager_startup(Manager *m, FILE *serialization, FDSet *fds) {
                         return log_error_errno(r, "Deserialization failed: %m");
         }
 
-        /* Any fds left? Find some unit which wants them. This is
-         * useful to allow container managers to pass some file
-         * descriptors to us pre-initialized. This enables
-         * socket-based activation of entire containers. */
+        /* Any fds left? Find some unit which wants them. This is useful to allow container managers to pass some file
+         * descriptors to us pre-initialized. This enables socket-based activation of entire containers. */
         manager_distribute_fds(m, fds);
 
-        /* We might have deserialized the notify fd, but if we didn't
-         * then let's create the bus now */
+        /* We might have deserialized the notify fd, but if we didn't then let's create the bus now */
         r = manager_setup_notify(m);
         if (r < 0)
                 /* No sense to continue without notifications, our children would fail anyway. */
@@ -1679,8 +1675,7 @@ int manager_startup(Manager *m, FILE *serialization, FDSet *fds) {
                 assert(m->n_reloading > 0);
                 m->n_reloading--;
 
-                /* Let's wait for the UnitNew/JobNew messages being
-                 * sent, before we notify that the reload is
+                /* Let's wait for the UnitNew/JobNew messages being sent, before we notify that the reload is
                  * finished */
                 m->send_reloading_done = true;
         }