[Spice-devel] [PATCH xf86-video-qxl] Xspice: handle parameters with value 0, allows --port 0
Jeremy White
jwhite at codeweavers.com
Mon Nov 2 14:14:16 PST 2015
Signed-off-by: Jeremy White <jwhite at codeweavers.com>
---
scripts/Xspice | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/Xspice b/scripts/Xspice
index 52b1b16..46c5c1e 100755
--- a/scripts/Xspice
+++ b/scripts/Xspice
@@ -256,7 +256,7 @@ var_args = ['port', 'tls_port', 'disable_ticketing',
'vdagent_uid', 'vdagent_gid']
for arg in var_args:
- if getattr(args, arg):
+ if getattr(args, arg) != None:
# The Qxl code doesn't respect booleans, so pass them as 0/1
a = getattr(args, arg)
if a == True:
--
2.1.4
More information about the Spice-devel
mailing list