From edfa55174bc542c88e92cdaeeb22ab8db1a79f1a Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 15 Oct 2020 10:56:01 +0200 Subject: [PATCH] systemctl: fix tabs indentations --- src/systemctl/systemctl-set-environment.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/systemctl/systemctl-set-environment.c b/src/systemctl/systemctl-set-environment.c index ac1ec7d6fe..4d17c91df2 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 {