From: Lennart Poettering Date: Thu, 15 Oct 2020 08:56:01 +0000 (+0200) Subject: systemctl: fix tabs indentations X-Git-Tag: v247-rc1~67^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17359%2Fhead;p=thirdparty%2Fsystemd.git systemctl: fix tabs indentations --- diff --git a/src/systemctl/systemctl-set-environment.c b/src/systemctl/systemctl-set-environment.c index ac1ec7d6fea..4d17c91df2c 100644 --- a/src/systemctl/systemctl-set-environment.c +++ b/src/systemctl/systemctl-set-environment.c @@ -63,7 +63,7 @@ int show_environment(int argc, char *argv[], void *userdata) { static void invalid_callback(const char *p, void *userdata) { _cleanup_free_ char *t = cescape(p); - + log_debug("Ignoring invalid environment assignment \"%s\".", strnull(t)); } @@ -120,13 +120,13 @@ int import_environment(int argc, char *argv[], void *userdata) { if (argc < 2) { _cleanup_strv_free_ char **copy = NULL; - + copy = strv_copy(environ); if (!copy) return log_oom(); - + strv_env_clean_with_callback(copy, invalid_callback, NULL); - + r = sd_bus_message_append_strv(m, copy); } else {