Ver código fonte

Make sure auth argument is escaped

tags/v1.8.90
Oliver Gondža 6 anos atrás
pai
commit
2d614c0fb4
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      unix/vncserver

+ 1
- 1
unix/vncserver Ver arquivo

@@ -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);

Carregando…
Cancelar
Salvar