[libvirt] [libvirt-snmp][PATCH v2] Remove the hard coded connection URI.

Michal Privoznik mprivozn at redhat.com
Thu Feb 10 09:02:35 UTC 2011


So now we rely on libvirt LIBVIRT_DEFAULT_URI environment variable.
---
 src/libvirtSnmp.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/libvirtSnmp.c b/src/libvirtSnmp.c
index ce21369..39b74bd 100644
--- a/src/libvirtSnmp.c
+++ b/src/libvirtSnmp.c
@@ -180,7 +180,8 @@ int libvirtSnmpInit(void)
     /* virConnectOpenAuth is called here with all default parameters,
      * except, possibly, the URI of the hypervisor. */
     /* TODO: configure the URI */
-    conn = virConnectOpenAuth("qemu:///system", virConnectAuthPtrDefault, 0);
+    /* Use libvirt env variable LIBVIRT_DEFAULT_URI by default*/
+    conn = virConnectOpenAuth("", virConnectAuthPtrDefault, 0);
 
     if (NULL == conn) {
         printf("No connection to hypervisor\n");
-- 
1.7.3.5




More information about the libvir-list mailing list