Fix small typo for VNC settings

This commit is contained in:
Wido den Hollander 2012-06-20 10:54:52 +02:00
parent e2a32ab4f7
commit a2de5fb7df
1 changed files with 2 additions and 2 deletions

View File

@ -717,11 +717,11 @@ public class LibvirtVMDef {
private final String _passwd;
private final String _keyMap;
public GraphicDef(String type, short port, boolean auotPort,
public GraphicDef(String type, short port, boolean autoPort,
String listenAddr, String passwd, String keyMap) {
_type = type;
_port = port;
_autoPort = auotPort;
_autoPort = autoPort;
_listenAddr = listenAddr;
_passwd = passwd;
_keyMap = keyMap;