diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-03-11 10:41:22 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2014-08-13 20:41:41 -0400 |
commit | 8085f163c50d998f3e30a6ddfc72c73d5dc57747 (patch) | |
tree | 36184a2129cd3ee2743b1815242ed7ab5c2ee0f7 /src/systemctl | |
parent | d06441da04cd5102816858d8d1e4aa367c00156b (diff) |
util: allow strappenda to take any number of args
This makes strappenda3 redundant, so we remove its usage and
definition. Add a few tests along the way for sanity.
Diffstat (limited to 'src/systemctl')
-rw-r--r-- | src/systemctl/systemctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 540b4a64c1..36db652316 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -4827,7 +4827,7 @@ static int switch_root(sd_bus *bus, char **args) { const char *root_systemd_path = NULL, *root_init_path = NULL; root_systemd_path = strappenda(root, "/" SYSTEMD_BINARY_PATH); - root_init_path = strappenda3(root, "/", init); + root_init_path = strappenda(root, "/", init); /* If the passed init is actually the same as the * systemd binary, then let's suppress it. */ |