]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
fix OpenVZ probe function
authorDaniel Veillard <veillard@redhat.com>
Fri, 11 Jul 2008 11:09:44 +0000 (11:09 +0000)
committerDaniel Veillard <veillard@redhat.com>
Fri, 11 Jul 2008 11:09:44 +0000 (11:09 +0000)
* src/openvz_driver.c: fix from Evgeniy Sokolov to the probe function
Daniel

ChangeLog
src/openvz_driver.c

index a7ce09f283203e87ea41c26a9f7252bc6e5f3d06..83fc2b79c573946c675ae6a0cfbf379f9740669a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jul 11 13:08:13 CEST 2008 Daniel Veillard <veillard@redhat.com>
+
+       * src/openvz_driver.c: fix from Evgeniy Sokolov to the probe function
+
 Fri Jul 11 11:35:59 BST 2008 Daniel P. Berrange <berrange@redhat.com>
 
        Generic APIs for network XML configuration
index 8ed744dd145d804a5c53c5a823950490a36686a7..8ed9b12465dc41b6365903e65fc8f2b3adddb7a3 100644 (file)
@@ -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);
 }