[libvirt] [PATCH] libxl: support VNC passwd

Jim Fehlig jfehlig at suse.com
Fri May 8 22:44:14 UTC 2015


While implementing support for SPICE, noticed VNC passwd was never
copied to libxl_device_vfb's vnc.passwd field.

Signed-off-by: Jim Fehlig <jfehlig at suse.com>
---
 src/libxl/libxl_conf.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/libxl/libxl_conf.c b/src/libxl/libxl_conf.c
index fccada5..35b1d04 100644
--- a/src/libxl/libxl_conf.c
+++ b/src/libxl/libxl_conf.c
@@ -1283,6 +1283,8 @@ libxlMakeVfb(virPortAllocatorPtr graphicsports,
                 if (VIR_STRDUP(x_vfb->vnc.listen, listenAddr) < 0)
                     return -1;
             }
+            if (VIR_STRDUP(x_vfb->vnc.passwd, l_vfb->data.vnc.auth.passwd) < 0)
+                return -1;
             if (VIR_STRDUP(x_vfb->keymap, l_vfb->data.vnc.keymap) < 0)
                 return -1;
             break;
-- 
1.8.4.5




More information about the libvir-list mailing list