瀏覽代碼

Make sure auth argument is escaped

tags/v1.8.90
Oliver Gondža 6 年之前
父節點
當前提交
2d614c0fb4
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      unix/vncserver

+ 1
- 1
unix/vncserver 查看文件

@@ -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…
取消
儲存