1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-08 08:58:27 +03:00

nspawn: fix a typo in an error message

This commit is contained in:
Frantisek Sumsal 2023-05-15 14:01:58 +02:00
parent c06d2e440c
commit 55d3c136d9

View File

@ -605,7 +605,7 @@ static int oci_namespace_type(const char *name, JsonVariant *v, JsonDispatchFlag
*nsflags = CLONE_NEWCGROUP;
else
return json_log(v, flags, SYNTHETIC_ERRNO(EINVAL),
"Unknown cgroup type, refusing: %s", n);
"Unknown namespace type, refusing: %s", n);
return 0;
}