Add missing handlers for default protocol/parameter.
[guacamole.git] / src / main / java / net / sourceforge / guacamole / net / basic / BasicFileAuthenticationProvider.java
index bde728a..f520959 100644 (file)
@@ -467,11 +467,15 @@ public class BasicFileAuthenticationProvider implements AuthenticationProvider {
             switch (state) {
 
                 case PROTOCOL:
+                case DEFAULT_CONNECTION_PROTOCOL:
+
                     current.getConfiguration(currentConnection)
                         .setProtocol(str);
                     return;
 
                 case PARAMETER:
+                case DEFAULT_CONNECTION_PARAMETER:
+
                     current.getConfiguration(currentConnection)
                             .setParameter(currentParameter, str);
                     return;