summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2016-03-16 09:51:25 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2016-03-16 09:51:25 -0400
commitb18eb0a676bdd5e00ce43ec31540653f94f82c83 (patch)
tree10a787fad0174417f65e0703062585f017d04c10
parentdb6b984ba8d1a64ab1cfba6fb714cd1e70970d58 (diff)
parent998fdc16aa3fd461ed932214e2e50c74d2f81040 (diff)
downloadsystemd-b18eb0a676bdd5e00ce43ec31540653f94f82c83.tar.gz
Merge pull request #2855 from tklauser/master
nspawn: Fix two misspellings of "hierarchy" in error messages
-rw-r--r--src/nspawn/nspawn-cgroup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nspawn/nspawn-cgroup.c b/src/nspawn/nspawn-cgroup.c
index 1db5ba7116..9f9a4759d1 100644
--- a/src/nspawn/nspawn-cgroup.c
+++ b/src/nspawn/nspawn-cgroup.c
@@ -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;