summaryrefslogtreecommitdiff
path: root/sshconnect2.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshconnect2.c')
-rw-r--r--sshconnect2.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/sshconnect2.c b/sshconnect2.c
index 3cb9b101c..c24b20278 100644
--- a/sshconnect2.c
+++ b/sshconnect2.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshconnect2.c,v 1.186 2010/11/29 23:45:51 djm Exp $ */ 1/* $OpenBSD: sshconnect2.c,v 1.188 2011/05/24 07:15:47 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * Copyright (c) 2008 Damien Miller. All rights reserved. 4 * Copyright (c) 2008 Damien Miller. All rights reserved.
@@ -109,14 +109,15 @@ order_hostkeyalgs(char *host, struct sockaddr *hostaddr, u_short port)
109 size_t maxlen; 109 size_t maxlen;
110 struct hostkeys *hostkeys; 110 struct hostkeys *hostkeys;
111 int ktype; 111 int ktype;
112 u_int i;
112 113
113 /* Find all hostkeys for this hostname */ 114 /* Find all hostkeys for this hostname */
114 get_hostfile_hostname_ipaddr(host, hostaddr, port, &hostname, NULL); 115 get_hostfile_hostname_ipaddr(host, hostaddr, port, &hostname, NULL);
115 hostkeys = init_hostkeys(); 116 hostkeys = init_hostkeys();
116 load_hostkeys(hostkeys, hostname, options.user_hostfile2); 117 for (i = 0; i < options.num_user_hostfiles; i++)
117 load_hostkeys(hostkeys, hostname, options.system_hostfile2); 118 load_hostkeys(hostkeys, hostname, options.user_hostfiles[i]);
118 load_hostkeys(hostkeys, hostname, options.user_hostfile); 119 for (i = 0; i < options.num_system_hostfiles; i++)
119 load_hostkeys(hostkeys, hostname, options.system_hostfile); 120 load_hostkeys(hostkeys, hostname, options.system_hostfiles[i]);
120 121
121 oavail = avail = xstrdup(KEX_DEFAULT_PK_ALG); 122 oavail = avail = xstrdup(KEX_DEFAULT_PK_ALG);
122 maxlen = strlen(avail) + 1; 123 maxlen = strlen(avail) + 1;
@@ -1888,9 +1889,12 @@ authmethod_get(char *authlist)
1888 authmethod_is_enabled(current)) { 1889 authmethod_is_enabled(current)) {
1889 debug3("authmethod_is_enabled %s", name); 1890 debug3("authmethod_is_enabled %s", name);
1890 debug("Next authentication method: %s", name); 1891 debug("Next authentication method: %s", name);
1892 xfree(name);
1891 return current; 1893 return current;
1892 } 1894 }
1893 } 1895 }
1896 if (name != NULL)
1897 xfree(name);
1894} 1898}
1895 1899
1896static char * 1900static char *