]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
nspawn: fix a typo in an error message
authorFrantisek Sumsal <frantisek@sumsal.cz>
Mon, 15 May 2023 12:01:58 +0000 (14:01 +0200)
committerFrantisek Sumsal <frantisek@sumsal.cz>
Mon, 15 May 2023 12:01:58 +0000 (14:01 +0200)
src/nspawn/nspawn-oci.c

index 3c6bfd3eaf31fd91f7fdfbbfae832eb92f3807b2..e9de2574071e85f73ca563322270a97c043c8c61 100644 (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;
 }