]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Wed Sep 12 11:25:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>
authorRichard W.M. Jones <rjones@redhat.com>
Wed, 12 Sep 2007 10:33:48 +0000 (10:33 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Wed, 12 Sep 2007 10:33:48 +0000 (10:33 +0000)
* src/remote_internal.c: virDrvOpenRemoteFlags was accidentally
  declared as a global variable, instead of the name an enum.

ChangeLog
src/remote_internal.c

index 2d1ce07ce9995e6b39068282b08fce8f98dcd0d4..2b2d396aa5fd016062f7fc50262c32d513926d12 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Sep 12 11:25:00 BST 2007 Richard W.M. Jones <rjones@redhat.com>
+
+       * src/remote_internal.c: virDrvOpenRemoteFlags was accidentally
+         declared as a global variable, instead of the name an enum.
+
 Mon Sep 10 17:15:29 CEST 2007 Daniel Veillard <veillard@redhat.com>
 
        * docs/architecture.html docs/errors.html docs/format.html
index 7ac70b9ee18fcd03ac76f1782cbe0584a1b803cf..3506ca0bf15eb411d2d5450e011e37fffdb58481 100644 (file)
@@ -230,12 +230,12 @@ remoteForkDaemon(virConnectPtr conn)
 
 
 /* Must not overlap with virDrvOpenFlags */
-enum {
+enum virDrvOpenRemoteFlags {
     VIR_DRV_OPEN_REMOTE_RO = (1 << 0),
     VIR_DRV_OPEN_REMOTE_UNIX = (1 << 1),
     VIR_DRV_OPEN_REMOTE_USER = (1 << 2),
     VIR_DRV_OPEN_REMOTE_AUTOSTART = (1 << 3),
-} virDrvOpenRemoteFlags;
+};
 
 static int
 doRemoteOpen (virConnectPtr conn, struct private_data *priv, const char *uri_str, int flags)