diff options
Diffstat (limited to 'readconf.c')
-rw-r--r-- | readconf.c | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/readconf.c b/readconf.c index 7b42f68d9..f80d1ccbc 100644 --- a/readconf.c +++ b/readconf.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: readconf.c,v 1.215 2013/12/06 13:39:49 markus Exp $ */ | 1 | /* $OpenBSD: readconf.c,v 1.216 2014/01/29 06:18:35 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -145,7 +145,7 @@ typedef enum { | |||
145 | oSendEnv, oControlPath, oControlMaster, oControlPersist, | 145 | oSendEnv, oControlPath, oControlMaster, oControlPersist, |
146 | oHashKnownHosts, | 146 | oHashKnownHosts, |
147 | oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand, | 147 | oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand, |
148 | oVisualHostKey, oUseRoaming, oZeroKnowledgePasswordAuthentication, | 148 | oVisualHostKey, oUseRoaming, |
149 | oKexAlgorithms, oIPQoS, oRequestTTY, oIgnoreUnknown, oProxyUseFdpass, | 149 | oKexAlgorithms, oIPQoS, oRequestTTY, oIgnoreUnknown, oProxyUseFdpass, |
150 | oCanonicalDomains, oCanonicalizeHostname, oCanonicalizeMaxDots, | 150 | oCanonicalDomains, oCanonicalizeHostname, oCanonicalizeMaxDots, |
151 | oCanonicalizeFallbackLocal, oCanonicalizePermittedCNAMEs, | 151 | oCanonicalizeFallbackLocal, oCanonicalizePermittedCNAMEs, |
@@ -252,12 +252,6 @@ static struct { | |||
252 | { "permitlocalcommand", oPermitLocalCommand }, | 252 | { "permitlocalcommand", oPermitLocalCommand }, |
253 | { "visualhostkey", oVisualHostKey }, | 253 | { "visualhostkey", oVisualHostKey }, |
254 | { "useroaming", oUseRoaming }, | 254 | { "useroaming", oUseRoaming }, |
255 | #ifdef JPAKE | ||
256 | { "zeroknowledgepasswordauthentication", | ||
257 | oZeroKnowledgePasswordAuthentication }, | ||
258 | #else | ||
259 | { "zeroknowledgepasswordauthentication", oUnsupported }, | ||
260 | #endif | ||
261 | { "kexalgorithms", oKexAlgorithms }, | 255 | { "kexalgorithms", oKexAlgorithms }, |
262 | { "ipqos", oIPQoS }, | 256 | { "ipqos", oIPQoS }, |
263 | { "requesttty", oRequestTTY }, | 257 | { "requesttty", oRequestTTY }, |
@@ -804,10 +798,6 @@ parse_time: | |||
804 | intptr = &options->password_authentication; | 798 | intptr = &options->password_authentication; |
805 | goto parse_flag; | 799 | goto parse_flag; |
806 | 800 | ||
807 | case oZeroKnowledgePasswordAuthentication: | ||
808 | intptr = &options->zero_knowledge_password_authentication; | ||
809 | goto parse_flag; | ||
810 | |||
811 | case oKbdInteractiveAuthentication: | 801 | case oKbdInteractiveAuthentication: |
812 | intptr = &options->kbd_interactive_authentication; | 802 | intptr = &options->kbd_interactive_authentication; |
813 | goto parse_flag; | 803 | goto parse_flag; |
@@ -1550,7 +1540,6 @@ initialize_options(Options * options) | |||
1550 | options->permit_local_command = -1; | 1540 | options->permit_local_command = -1; |
1551 | options->use_roaming = -1; | 1541 | options->use_roaming = -1; |
1552 | options->visual_host_key = -1; | 1542 | options->visual_host_key = -1; |
1553 | options->zero_knowledge_password_authentication = -1; | ||
1554 | options->ip_qos_interactive = -1; | 1543 | options->ip_qos_interactive = -1; |
1555 | options->ip_qos_bulk = -1; | 1544 | options->ip_qos_bulk = -1; |
1556 | options->request_tty = -1; | 1545 | options->request_tty = -1; |
@@ -1706,8 +1695,6 @@ fill_default_options(Options * options) | |||
1706 | options->use_roaming = 1; | 1695 | options->use_roaming = 1; |
1707 | if (options->visual_host_key == -1) | 1696 | if (options->visual_host_key == -1) |
1708 | options->visual_host_key = 0; | 1697 | options->visual_host_key = 0; |
1709 | if (options->zero_knowledge_password_authentication == -1) | ||
1710 | options->zero_knowledge_password_authentication = 0; | ||
1711 | if (options->ip_qos_interactive == -1) | 1698 | if (options->ip_qos_interactive == -1) |
1712 | options->ip_qos_interactive = IPTOS_LOWDELAY; | 1699 | options->ip_qos_interactive = IPTOS_LOWDELAY; |
1713 | if (options->ip_qos_bulk == -1) | 1700 | if (options->ip_qos_bulk == -1) |