summaryrefslogtreecommitdiff
path: root/src/shared/seccomp-util.c
diff options
context:
space:
mode:
authorFrantisek Sumsal <frantisek@sumsal.cz>2022-05-31 11:20:44 +0200
committerYu Watanabe <watanabe.yu+github@gmail.com>2022-05-31 18:29:40 +0900
commita52765a5504108fb1d89f3d79b639b0a20efbd5e (patch)
tree3b1210436bda521e8e7ec7c23433332fb94c128a /src/shared/seccomp-util.c
parent71891fb2de4c60709875c215c3d18d12361fed89 (diff)
downloadsystemd-a52765a5504108fb1d89f3d79b639b0a20efbd5e.tar.gz
seccomp: fix a typo in error message
Diffstat (limited to 'src/shared/seccomp-util.c')
-rw-r--r--src/shared/seccomp-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/seccomp-util.c b/src/shared/seccomp-util.c
index 49044a45ae..b76189d6b3 100644
--- a/src/shared/seccomp-util.c
+++ b/src/shared/seccomp-util.c
@@ -1123,7 +1123,7 @@ int seccomp_load_syscall_filter_set_raw(uint32_t default_action, Hashmap* filter
if (ERRNO_IS_SECCOMP_FATAL(r))
return r;
if (r < 0)
- log_debug_errno(r, "Failed to install systemc call filter for architecture %s, skipping: %m",
+ log_debug_errno(r, "Failed to install system call filter for architecture %s, skipping: %m",
seccomp_arch_to_string(arch));
}