From: Lennart Poettering Date: Fri, 16 Sep 2022 16:08:19 +0000 (+0200) Subject: nspawn: fix two error strings X-Git-Tag: v252-rc1~168 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c941b650753f8ceada80a1df70fe8285a84995bc;p=thirdparty%2Fsystemd.git nspawn: fix two error strings --- diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 44e5c509a80..2834a7fc8aa 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -1627,9 +1627,9 @@ static int parse_argv(int argc, char *argv[]) { if (r == -ENOMEM) return log_oom(); if (r < 0) - return log_error_errno(r, "Failed to parse --set-credential= parameter: %m"); + return log_error_errno(r, "Failed to parse --load-credential= parameter: %m"); if (r == 0 || !p) - return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Missing value for --set-credential=: %s", optarg); + return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Missing value for --load-credential=: %s", optarg); if (!credential_name_valid(word)) return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Credential name is not valid: %s", word);