summaryrefslogtreecommitdiff
path: root/src/shared/module-util.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-03-03 15:00:53 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-03-03 15:02:53 +0100
commit105a1a36cd6eeac3a43b5dd52383b00c69f86497 (patch)
tree67df34277ea76ada8f6ba6134ed24f3cfa2b17f3 /src/shared/module-util.c
parent33eb1f24978c813994357c27efd0e99f491e7c55 (diff)
downloadsystemd-105a1a36cd6eeac3a43b5dd52383b00c69f86497.tar.gz
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/shared/module-util.c')
-rw-r--r--src/shared/module-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/module-util.c b/src/shared/module-util.c
index 75c8ba2b78..9173cf2ffd 100644
--- a/src/shared/module-util.c
+++ b/src/shared/module-util.c
@@ -18,7 +18,7 @@ int module_load_and_warn(struct kmod_ctx *ctx, const char *module, bool verbose)
r = kmod_module_new_from_lookup(ctx, module, &modlist);
if (r < 0)
return log_full_errno(verbose ? LOG_ERR : LOG_DEBUG, r,
- "Failed to lookup module alias '%s': %m", module);
+ "Failed to look up module alias '%s': %m", module);
if (!modlist) {
log_full_errno(verbose ? LOG_ERR : LOG_DEBUG, r,