]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tmpfiles: suffix --replace= properly with = in comment
authorLennart Poettering <lennart@poettering.net>
Tue, 18 Jun 2024 07:56:49 +0000 (09:56 +0200)
committerLuca Boccassi <bluca@debian.org>
Tue, 18 Jun 2024 13:45:59 +0000 (14:45 +0100)
src/tmpfiles/tmpfiles.c

index f378cdf1ee2f6e69dc7edf774810e1c7eada833f..12ef71f080d25d717fc4571be908f0bc5264ba4e 100644 (file)
@@ -4645,12 +4645,10 @@ static int run(int argc, char *argv[]) {
         if (!c.items || !c.globs)
                 return log_oom();
 
-        /* If command line arguments are specified along with --replace, read all
-         * configuration files and insert the positional arguments at the specified
-         * place. Otherwise, if command line arguments are specified, execute just
-         * them, and finally, without --replace= or any positional arguments, just
-         * read configuration and execute it.
-         */
+        /* If command line arguments are specified along with --replace=, read all configuration files and
+         * insert the positional arguments at the specified place. Otherwise, if command line arguments are
+         * specified, execute just them, and finally, without --replace= or any positional arguments, just
+         * read configuration and execute it. */
         if (arg_replace || optind >= argc)
                 r = read_config_files(&c, config_dirs, argv + optind, &invalid_config);
         else