configured --without-libvirtd. Also adds debugging of
registration events.
+Wed Oct 15 11:28:00 BST 2008 Richard W.M. Jones <rjones@redhat.com>
+
+ * src/libvirt.c: Register the remote driver even when we are
+ configured --without-libvirtd. Also adds debugging of
+ registration events.
+
Mon Oct 13 18:45:43 CEST 2008 Jim Meyering <meyering@redhat.com>
avoid many format string warnings
if (networkRegister() == -1) return -1;
#endif
if (storageRegister() == -1) return -1;
+#endif
#ifdef WITH_REMOTE
if (remoteRegister () == -1) return -1;
-#endif
#endif
return(0);
return -1;
}
+ DEBUG ("registering %s as driver %d",
+ driver->name, virDriverTabCount);
+
virDriverTab[virDriverTabCount] = driver;
return virDriverTabCount++;
}