[systemd-commits] src/systemctl

Zbigniew Jędrzejewski-Szmek zbyszek at kemper.freedesktop.org
Fri Nov 28 09:29:15 PST 2014


 src/systemctl/systemctl.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit e80733be33e52d8ab2f1ae845326d39c600f5612
Author: Zbigniew Jędrzejewski-Szmek <zbyszek at in.waw.pl>
Date:   Fri Nov 28 12:25:09 2014 -0500

    Revert "systemctl: append default suffix only if none present"
    
    This reverts a chunk out of commit 5e03c6e3b517286bbd65b48d88f60e5b83721894
    which was trying to pass NULL to the the '.service' default. Anyway,
    it seems better to be explicit.

diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c
index 263755f..4299429 100644
--- a/src/systemctl/systemctl.c
+++ b/src/systemctl/systemctl.c
@@ -2701,7 +2701,10 @@ static int expand_names(sd_bus *bus, char **names, const char* suffix, char ***r
         STRV_FOREACH(name, names) {
                 char *t;
 
-                t = unit_name_mangle_with_suffix(*name, MANGLE_GLOB, suffix);
+                if (suffix)
+                        t = unit_name_mangle_with_suffix(*name, MANGLE_GLOB, suffix);
+                else
+                        t = unit_name_mangle(*name, MANGLE_GLOB);
                 if (!t)
                         return log_oom();
 



More information about the systemd-commits mailing list