diff options
author | Matt Johnston <matt@ucc.asn.au> | 2007-02-22 15:29:32 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2007-02-22 15:29:32 +0000 |
commit | c077f22fb4c5914abf77812c02f41461a783ad0a (patch) | |
tree | 1b0afcec80903245b25773f5e000fd6e72e393d9 /svr-authpubkey.c | |
parent | b01a74a9d757ce2b83465214bde1fa07d3e2d3ea (diff) |
Improve known_hosts checking.
--HG--
extra : convert_revision : b7933fa29cbedeb53b79a0b60aaa0f049e003cb2
Diffstat (limited to 'svr-authpubkey.c')
-rw-r--r-- | svr-authpubkey.c | 2 |
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; } |