mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-29 17:33:09 +00:00
* src/proxy_internal.c: fix the UUID lookup though proxy, by
actually sending the UUID string in the request! Daniel
This commit is contained in:
parent
f39e1b8860
commit
9cffaad22b
@ -1,3 +1,8 @@
|
|||||||
|
Tue Aug 14 14:32:51 CEST 2007 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
|
* src/proxy_internal.c: fix the UUID lookup though proxy, by
|
||||||
|
actually sending the UUID string in the request!
|
||||||
|
|
||||||
Tue Aug 14 09:10:51 CEST 2007 Daniel Veillard <veillard@redhat.com>
|
Tue Aug 14 09:10:51 CEST 2007 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
* src/virsh.c: patch from Atsushi SAKAI fixing schedinfo synopsys
|
* src/virsh.c: patch from Atsushi SAKAI fixing schedinfo synopsys
|
||||||
|
@ -852,6 +852,8 @@ xenProxyLookupByUUID(virConnectPtr conn, const unsigned char *uuid)
|
|||||||
memset(&req, 0, sizeof(virProxyPacket));
|
memset(&req, 0, sizeof(virProxyPacket));
|
||||||
req.command = VIR_PROXY_LOOKUP_UUID;
|
req.command = VIR_PROXY_LOOKUP_UUID;
|
||||||
req.len = sizeof(virProxyPacket) + VIR_UUID_BUFLEN;
|
req.len = sizeof(virProxyPacket) + VIR_UUID_BUFLEN;
|
||||||
|
memcpy(&req.extra.str[0], uuid, VIR_UUID_BUFLEN);
|
||||||
|
|
||||||
ret = xenProxyCommand(conn, (virProxyPacketPtr) &req, &req, 0);
|
ret = xenProxyCommand(conn, (virProxyPacketPtr) &req, &req, 0);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
xenProxyClose(conn);
|
xenProxyClose(conn);
|
||||||
|
Loading…
Reference in New Issue
Block a user