From 2d614c0fb422dfcc987f5c440595899e20698831 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Oliver=20Gond=C5=BEa?= Date: Thu, 8 Feb 2018 17:12:11 +0100 Subject: [PATCH] Make sure auth argument is escaped --- unix/vncserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/vncserver b/unix/vncserver index 2ef436a7..9e7a6ac5 100755 --- a/unix/vncserver +++ b/unix/vncserver @@ -207,7 +207,7 @@ my %config; # override these where present. $default_opts{desktop} = "edString($desktopName); $default_opts{httpd} = $vncJavaFiles if ($vncJavaFiles); -$default_opts{auth} = $xauthorityFile; +$default_opts{auth} = "edString($xauthorityFile); $default_opts{geometry} = $geometry if ($geometry); $default_opts{depth} = $depth if ($depth); $default_opts{pixelformat} = $pixelformat if ($pixelformat); -- 2.39.5