From: Wei Liu Date: Fri, 18 Jan 2019 12:47:45 +0000 (+0000) Subject: libxl: fix error message for unsharing namespaces X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=1912f1220cf87aee28349469893f101980714a05;p=people%2Fpauldu%2Fxen.git libxl: fix error message for unsharing namespaces Signed-off-by: Wei Liu Acked-by: Ian Jackson Release-acked-by: Juergen Gross --- diff --git a/tools/libxl/libxl_linux.c b/tools/libxl/libxl_linux.c index 59dd945bc1..873b0271af 100644 --- a/tools/libxl/libxl_linux.c +++ b/tools/libxl/libxl_linux.c @@ -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; }