Explorar el Código

Make sure auth argument is escaped

tags/v1.8.90
Oliver Gondža hace 6 años
padre
commit
2d614c0fb4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      unix/vncserver

+ 1
- 1
unix/vncserver Ver fichero

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

Cargando…
Cancelar
Guardar