As of commit f73ca7e4cc090772652611a4e2b8b95ae64319bc, you can now disable the regular port by specifying 0. This change to the Xspice script permits us to take advantage of that change. Signed-off-by: Jeremy White <jwhite@xxxxxxxxxxxxxxx> --- Since v1: Commit message expanded to explain why this is useful. --- 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 _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx http://lists.freedesktop.org/mailman/listinfo/spice-devel