From 09adcdf71d762803b33bd2064a0fed56cf4072e4 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 22 Jul 2011 04:20:02 +0200 Subject: [PATCH] systemctl: fix indenting --- src/systemctl.c | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/systemctl.c b/src/systemctl.c index 63eb3245d..36346eebe 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -3731,12 +3731,12 @@ static int remove_marked_symlinks(const char *config_path) { static int create_symlink(const char *verb, const char *orig_old_path, const char *new_path) { int r; - const char *old_path; + const char *old_path; - if (arg_root) - old_path = orig_old_path+strlen(arg_root); - else - old_path = orig_old_path; + if (arg_root) + old_path = orig_old_path+strlen(arg_root); + else + old_path = orig_old_path; assert(old_path); assert(new_path); @@ -3949,22 +3949,22 @@ static int install_info_apply(const char *verb, LookupPaths *paths, InstallInfo STRV_FOREACH(p, paths->unit_path) { int fd; - char *path, *should_free; + char *path, *should_free; - if (arg_root) - should_free = path = strappend(arg_root, *p); - else { - should_free = NULL; - path = *p; - } + if (arg_root) + should_free = path = strappend(arg_root, *p); + else { + should_free = NULL; + path = *p; + } if (!(filename = path_make_absolute(i->name, path))) { log_error("Out of memory"); return -ENOMEM; } - if (should_free) - free(should_free); + if (should_free) + free(should_free); /* Ensure that we don't follow symlinks */ if ((fd = open(filename, O_RDONLY|O_CLOEXEC|O_NOFOLLOW|O_NOCTTY)) >= 0) @@ -4006,7 +4006,7 @@ static int install_info_apply(const char *verb, LookupPaths *paths, InstallInfo tmp_path = strappend (arg_root, sysv); exists = access (tmp_path, F_OK) >= 0; free (tmp_path); - } else + } else exists = access(sysv, F_OK) >= 0; if (exists) { @@ -4030,7 +4030,7 @@ static int install_info_apply(const char *verb, LookupPaths *paths, InstallInfo if (arg_root) argv[3] = strappend("--root=", arg_root); - log_info("Executing %s %s %s %s", argv[0], argv[1], strempty(argv[2]), strempty(argv[3])); + log_info("Executing %s %s %s %s", argv[0], argv[1], strempty(argv[2]), strempty(argv[3])); if ((pid = fork()) < 0) { log_error("Failed to fork: %m"); -- 2.30.2