summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTorstein Husebø <torstein@huseboe.net>2015-01-26 15:29:14 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-01-26 10:39:47 -0500
commitcc98b3025eeb89addb76a27390cb2baca4eab8b9 (patch)
treeab7a776869de4cf49a5382307e9133fbdb9676d9 /src
parentebf31a1f58d0b10ca63c928ff31b7745fc724003 (diff)
treewide: fix multiple typos
Diffstat (limited to 'src')
-rw-r--r--src/core/cgroup.c2
-rw-r--r--src/core/load-fragment.c2
-rw-r--r--src/import/import-dkr.c2
-rw-r--r--src/machine/machinectl.c2
-rw-r--r--src/resolve/resolved-manager.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/core/cgroup.c b/src/core/cgroup.c
index 16b8e1e599..64d00b16b6 100644
--- a/src/core/cgroup.c
+++ b/src/core/cgroup.c
@@ -954,7 +954,7 @@ int manager_setup_cgroup(Manager *m) {
if (m->pin_cgroupfs_fd < 0)
return log_error_errno(errno, "Failed to open pin file: %m");
- /* 6. Always enable hierarchial support if it exists... */
+ /* 6. Always enable hierarchical support if it exists... */
cg_set_attribute("memory", "/", "memory.use_hierarchy", "1");
}
diff --git a/src/core/load-fragment.c b/src/core/load-fragment.c
index 516731aba2..98794bfafb 100644
--- a/src/core/load-fragment.c
+++ b/src/core/load-fragment.c
@@ -589,7 +589,7 @@ int config_parse_exec(const char *unit,
}
found:
- /* If seperate_argv0, we'll move first element to path variable */
+ /* If separate_argv0, we'll move first element to path variable */
n = new(char*, MAX(k + !separate_argv0, 1u));
if (!n)
return log_oom();
diff --git a/src/import/import-dkr.c b/src/import/import-dkr.c
index 78ea80846c..a4ff6f43f0 100644
--- a/src/import/import-dkr.c
+++ b/src/import/import-dkr.c
@@ -752,7 +752,7 @@ static void dkr_import_job_on_finished(ImportJob *j) {
r = btrfs_subvol_set_read_only(i->temp_path, true);
if (r < 0) {
- log_error_errno(r, "Failed to mark snapshort read-only: %m");
+ log_error_errno(r, "Failed to mark snapshot read-only: %m");
goto finish;
}
diff --git a/src/machine/machinectl.c b/src/machine/machinectl.c
index 728cd42629..071b2b9ebf 100644
--- a/src/machine/machinectl.c
+++ b/src/machine/machinectl.c
@@ -1785,7 +1785,7 @@ static int transfer_signal_handler(sd_event_source *s, const struct signalfd_sig
assert(si);
if (!arg_quiet)
- log_info("Continuing download in the background. Use \"machinectl cancel-transfer %" PRIu32 "\" to arbort transfer.", PTR_TO_UINT32(userdata));
+ log_info("Continuing download in the background. Use \"machinectl cancel-transfer %" PRIu32 "\" to abort transfer.", PTR_TO_UINT32(userdata));
sd_event_exit(sd_event_source_get_event(s), EINTR);
return 0;
diff --git a/src/resolve/resolved-manager.c b/src/resolve/resolved-manager.c
index 2edfb9f7fd..890cc04941 100644
--- a/src/resolve/resolved-manager.c
+++ b/src/resolve/resolved-manager.c
@@ -196,7 +196,7 @@ static int manager_rtnl_listen(Manager *m) {
assert(m);
- /* First, subscibe to interfaces coming and going */
+ /* First, subscribe to interfaces coming and going */
r = sd_rtnl_open(&m->rtnl, 3, RTNLGRP_LINK, RTNLGRP_IPV4_IFADDR, RTNLGRP_IPV6_IFADDR);
if (r < 0)
return r;