]> xenbits.xensource.com Git - people/pauldu/xen.git/commitdiff
libxl: fix error message for unsharing namespaces
authorWei Liu <wei.liu2@citrix.com>
Fri, 18 Jan 2019 12:47:45 +0000 (12:47 +0000)
committerWei Liu <wei.liu2@citrix.com>
Fri, 18 Jan 2019 14:22:36 +0000 (14:22 +0000)
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Release-acked-by: Juergen Gross <jgross@suse.com>
tools/libxl/libxl_linux.c

index 59dd945bc163a6ca0025bf281c7e4f32d9ee9a6d..873b0271af69b58c7677396cfc0310f5c8abe12f 100644 (file)
@@ -344,7 +344,7 @@ int libxl__local_dm_preexec_restrict(libxl__gc *gc)
     /* Unshare mount and IPC namespaces.  These are unused by QEMU. */
     r = unshare(CLONE_NEWNS | CLONE_NEWIPC);
     if (r) {
-        LOGE(ERROR, "libxl: Mount and IPC namespace unfailed");
+        LOGE(ERROR, "libxl: unshare Mount and IPC namespace failed");
         return ERROR_FAIL;
     }