]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
chase: fix indentation 27062/head
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 30 Mar 2023 04:14:48 +0000 (13:14 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 30 Mar 2023 05:52:13 +0000 (14:52 +0900)
src/basic/chase.c

index 2873aa9fac6ee377e6c474c1ecd1d0c82898271f..4b8edefcab0449c6395e1e464607c3e2ff5b034e 100644 (file)
@@ -517,9 +517,9 @@ int chase(
         path = path_startswith(absolute, empty_to_root(root));
         if (!path)
                 return log_full_errno(flags & CHASE_WARN ? LOG_WARNING : LOG_DEBUG,
-                                        SYNTHETIC_ERRNO(ECHRNG),
-                                        "Specified path '%s' is outside of specified root directory '%s', refusing to resolve.",
-                                        absolute, empty_to_root(root));
+                                      SYNTHETIC_ERRNO(ECHRNG),
+                                      "Specified path '%s' is outside of specified root directory '%s', refusing to resolve.",
+                                      absolute, empty_to_root(root));
 
         fd = open(empty_to_root(root), O_CLOEXEC|O_DIRECTORY|O_PATH);
         if (fd < 0)