From: Gao feng Date: Fri, 15 Jun 2012 07:41:05 +0000 (+0800) Subject: LXC: fix incorrect DEBUG info X-Git-Tag: v0.9.13-rc1~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3477e6b0ab747406b8a6c043eaf6eabaf09e86b2;p=thirdparty%2Flibvirt.git LXC: fix incorrect DEBUG info print debug info "container support is enabled" when host support the user or net namespace. Signed-off-by: Gao feng --- diff --git a/src/lxc/lxc_container.c b/src/lxc/lxc_container.c index b3727aadae..9045a7d50e 100644 --- a/src/lxc/lxc_container.c +++ b/src/lxc/lxc_container.c @@ -1771,6 +1771,6 @@ int lxcContainerAvailable(int features) return -1; } - VIR_DEBUG("Mounted all filesystems"); + VIR_DEBUG("container support is enabled"); return 0; }