Browse Source

Make sure auth argument is escaped

tags/v1.8.90
Oliver Gondža 6 years ago
parent
commit
2d614c0fb4
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      unix/vncserver

+ 1
- 1
unix/vncserver View File

@@ -207,7 +207,7 @@ my %config;
# override these where present.
$default_opts{desktop} = &quotedString($desktopName);
$default_opts{httpd} = $vncJavaFiles if ($vncJavaFiles);
$default_opts{auth} = $xauthorityFile;
$default_opts{auth} = &quotedString($xauthorityFile);
$default_opts{geometry} = $geometry if ($geometry);
$default_opts{depth} = $depth if ($depth);
$default_opts{pixelformat} = $pixelformat if ($pixelformat);

Loading…
Cancel
Save