diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-07-22 04:20:02 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-07-22 04:31:21 +0200 |
commit | 09adcdf71d762803b33bd2064a0fed56cf4072e4 (patch) | |
tree | fe4131b42f24212eb660772f5c187056d9ba5df0 /src/systemctl.c | |
parent | f437d5d203ff9498ac967c8153169fc79ab6b584 (diff) |
systemctl: fix indenting
Diffstat (limited to 'src/systemctl.c')
-rw-r--r-- | src/systemctl.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/systemctl.c b/src/systemctl.c index 63eb3245d0..36346eebe8 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"); |