summaryrefslogtreecommitdiff
path: root/svr-authpubkey.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2007-02-22 15:29:32 +0000
committerMatt Johnston <matt@ucc.asn.au>2007-02-22 15:29:32 +0000
commit5c65b0e57494d09ce05a625479885b20b7f91ee0 (patch)
tree1b0afcec80903245b25773f5e000fd6e72e393d9 /svr-authpubkey.c
parent02b8e1410a4b458b45f3ab4a0dd8cd42ed340d04 (diff)
downloaddropbear-5c65b0e57494d09ce05a625479885b20b7f91ee0.tar.gz
Improve known_hosts checking.
Diffstat (limited to 'svr-authpubkey.c')
-rw-r--r--svr-authpubkey.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/svr-authpubkey.c b/svr-authpubkey.c
index 3942bd5..d611c89 100644
--- a/svr-authpubkey.c
+++ b/svr-authpubkey.c
@@ -231,7 +231,7 @@ static int checkpubkey(unsigned char* algo, unsigned int algolen,
TRACE(("checkpubkey: line pos = %d len = %d", line->pos, line->len))
- ret = cmp_base64_key(keyblob, keybloblen, algo, algolen, line);
+ ret = cmp_base64_key(keyblob, keybloblen, algo, algolen, line, NULL);
if (ret == DROPBEAR_SUCCESS) {
break;
}