]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
nspawn: Fix two misspellings of "hierarchy" in error messages 2855/head
authorTobias Klauser <tklauser@distanz.ch>
Wed, 16 Mar 2016 13:34:00 +0000 (14:34 +0100)
committerTobias Klauser <tklauser@distanz.ch>
Wed, 16 Mar 2016 13:34:00 +0000 (14:34 +0100)
src/nspawn/nspawn-cgroup.c

index 1db5ba71163350c6263542398ce81ccd0fb8e944..9f9a4759d1caaf0813fde3b18debae3b845dd7e8 100644 (file)
@@ -73,7 +73,7 @@ int sync_cgroup(pid_t pid, bool unified_requested) {
 
         unified = cg_unified();
         if (unified < 0)
-                return log_error_errno(unified, "Failed to determine whether the unified hierachy is used: %m");
+                return log_error_errno(unified, "Failed to determine whether the unified hierarchy is used: %m");
 
         if ((unified > 0) == unified_requested)
                 return 0;
@@ -135,7 +135,7 @@ int create_subcgroup(pid_t pid, bool unified_requested) {
 
         unified = cg_unified();
         if (unified < 0)
-                return log_error_errno(unified, "Failed to determine whether the unified hierachy is used: %m");
+                return log_error_errno(unified, "Failed to determine whether the unified hierarchy is used: %m");
         if (unified == 0)
                 return 0;