From 5ac03453298100ed5006664669e6588049d403e2 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Thu, 8 Feb 2024 11:36:05 +0900 Subject: [PATCH] nspawn: fix typo Follow-up for f94025a13681e001011dd52e0dcecc143b4501b9. --- src/nspawn/nspawn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 15d754ba9c..6cf2fd1ff5 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -1380,7 +1380,7 @@ static int parse_argv(int argc, char *argv[]) { return log_error_errno(r, "Failed to simplify path %s: %m", optarg); if (!path_is_normalized(wd)) - return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Working dirctory path is not normalized: %s", wd); + return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Working directory path is not normalized: %s", wd); if (path_below_api_vfs(wd)) return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Working directory is below API VFS, refusing: %s", wd); -- 2.25.1