mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-24 05:25:18 +00:00
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.
This commit is contained in:
parent
3292123d13
commit
1361ddec0a
@ -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>
|
Mon Sep 10 17:15:29 CEST 2007 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
* docs/architecture.html docs/errors.html docs/format.html
|
* docs/architecture.html docs/errors.html docs/format.html
|
||||||
|
@ -230,12 +230,12 @@ remoteForkDaemon(virConnectPtr conn)
|
|||||||
|
|
||||||
|
|
||||||
/* Must not overlap with virDrvOpenFlags */
|
/* Must not overlap with virDrvOpenFlags */
|
||||||
enum {
|
enum virDrvOpenRemoteFlags {
|
||||||
VIR_DRV_OPEN_REMOTE_RO = (1 << 0),
|
VIR_DRV_OPEN_REMOTE_RO = (1 << 0),
|
||||||
VIR_DRV_OPEN_REMOTE_UNIX = (1 << 1),
|
VIR_DRV_OPEN_REMOTE_UNIX = (1 << 1),
|
||||||
VIR_DRV_OPEN_REMOTE_USER = (1 << 2),
|
VIR_DRV_OPEN_REMOTE_USER = (1 << 2),
|
||||||
VIR_DRV_OPEN_REMOTE_AUTOSTART = (1 << 3),
|
VIR_DRV_OPEN_REMOTE_AUTOSTART = (1 << 3),
|
||||||
} virDrvOpenRemoteFlags;
|
};
|
||||||
|
|
||||||
static int
|
static int
|
||||||
doRemoteOpen (virConnectPtr conn, struct private_data *priv, const char *uri_str, int flags)
|
doRemoteOpen (virConnectPtr conn, struct private_data *priv, const char *uri_str, int flags)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user