From 6718998d1e5e88c2a045037fa052022f1b8880d5 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 18 Jun 2024 09:56:49 +0200 Subject: [PATCH] tmpfiles: suffix --replace= properly with = in comment --- src/tmpfiles/tmpfiles.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index f378cdf1ee2..12ef71f080d 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -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