From: Daniel Veillard Date: Fri, 11 Jul 2008 11:09:44 +0000 (+0000) Subject: fix OpenVZ probe function X-Git-Tag: LIBVIRT_0_4_6~189 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d678a6e88c6c94696097edb81ca1ae6176bbc6d8;p=thirdparty%2Flibvirt.git fix OpenVZ probe function * src/openvz_driver.c: fix from Evgeniy Sokolov to the probe function Daniel --- diff --git a/ChangeLog b/ChangeLog index a7ce09f283..83fc2b79c5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Jul 11 13:08:13 CEST 2008 Daniel Veillard + + * src/openvz_driver.c: fix from Evgeniy Sokolov to the probe function + Fri Jul 11 11:35:59 BST 2008 Daniel P. Berrange Generic APIs for network XML configuration diff --git a/src/openvz_driver.c b/src/openvz_driver.c index 8ed744dd14..8ed9b12465 100644 --- a/src/openvz_driver.c +++ b/src/openvz_driver.c @@ -599,7 +599,7 @@ static const char *openvzProbe(void) { #ifdef __linux__ if ((getuid() == 0) && (virFileExists("/proc/vz"))) - return("openvz:///"); + return("openvz:///system"); #endif return(NULL); }