[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] Xend: Fix handling of vnc params.
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1210242004 -3600 # Node ID 36694cae3927bea2934871d287dd1ec0c9912e3d # Parent 3a1758f420d3bb705267fd00d61d2305cd4566e4 Xend: Fix handling of vnc params. Signed-off-by: Yosuke Iwamatsu <y-iwamatsu@xxxxxxxxxxxxx> --- tools/python/xen/xend/image.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -r 3a1758f420d3 -r 36694cae3927 tools/python/xen/xend/image.py --- a/tools/python/xen/xend/image.py Thu May 08 11:18:34 2008 +0100 +++ b/tools/python/xen/xend/image.py Thu May 08 11:20:04 2008 +0100 @@ -294,11 +294,11 @@ class ImageHandler: vnclisten = vnc_config.get('vnclisten', XendOptions.instance().get_vnclisten_address()) - vncdisplay = vnc_config.get('vncdisplay', 0) + vncdisplay = int(vnc_config.get('vncdisplay', 0)) ret.append('-vnc') ret.append("%s:%s%s" % (vnclisten, vncdisplay, vncopts)) - if vnc_config.get('vncunused', 0): + if int(vnc_config.get('vncunused', 1)) != 0: ret.append('-vncunused') elif has_sdl: _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |