diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-03-03 15:00:53 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-03-03 15:02:53 +0100 |
commit | 105a1a36cd6eeac3a43b5dd52383b00c69f86497 (patch) | |
tree | 67df34277ea76ada8f6ba6134ed24f3cfa2b17f3 /src/core | |
parent | tree-wide: drop printk.devkmsg=on setting in various places (diff) | |
download | systemd-105a1a36cd6eeac3a43b5dd52383b00c69f86497.tar.xz systemd-105a1a36cd6eeac3a43b5dd52383b00c69f86497.zip |
tree-wide: fix spelling of lookup and setup verbs
"set up" and "look up" are the verbs, "setup" and "lookup" are the nouns.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/dbus-manager.c | 2 | ||||
-rw-r--r-- | src/core/namespace.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c index 46b6082a25..60f55aef5f 100644 --- a/src/core/dbus-manager.c +++ b/src/core/dbus-manager.c @@ -1713,7 +1713,7 @@ static int method_get_dynamic_users(sd_bus_message *message, void *userdata, sd_ if (r == -EAGAIN) /* not realized yet? */ continue; if (r < 0) - return sd_bus_error_setf(error, SD_BUS_ERROR_FAILED, "Failed to lookup a dynamic user."); + return sd_bus_error_setf(error, SD_BUS_ERROR_FAILED, "Failed to look up a dynamic user."); r = sd_bus_message_append(reply, "(us)", uid, d->name); if (r < 0) diff --git a/src/core/namespace.c b/src/core/namespace.c index 07c9ac2b51..cda9d2ca1d 100644 --- a/src/core/namespace.c +++ b/src/core/namespace.c @@ -749,7 +749,7 @@ static int mount_private_dev(MountEntry *m) { r = dev_setup(temporary_mount, UID_INVALID, GID_INVALID); if (r < 0) - log_debug_errno(r, "Failed to setup basic device tree at '%s', ignoring: %m", temporary_mount); + log_debug_errno(r, "Failed to set up basic device tree at '%s', ignoring: %m", temporary_mount); /* Create the /dev directory if missing. It is more likely to be * missing when the service is started with RootDirectory. This is |