comparison svr-authpubkey.c @ 1500:35f38af1238b

Remove accidentally committed DROPBEAR_FUZZ
author Matt Johnston <matt@ucc.asn.au>
date Fri, 16 Feb 2018 23:17:15 +0800
parents fb90a5ba84e0
children 5916af64acd4 5d2d1021ca00
comparison
equal deleted inserted replaced
1499:2d450c1056e3 1500:35f38af1238b
471 471
472 TRACE(("leave checkfileperm: success")) 472 TRACE(("leave checkfileperm: success"))
473 return DROPBEAR_SUCCESS; 473 return DROPBEAR_SUCCESS;
474 } 474 }
475 475
476 #ifdef DROPBEAR_FUZZ
477 int fuzz_checkpubkey_line(buffer* line, int line_num, char* filename,
478 const char* algo, unsigned int algolen,
479 const unsigned char* keyblob, unsigned int keybloblen) {
480 return checkpubkey_line(line, line_num, filename, algo, algolen, keyblob, keybloblen);
481 }
482 #endif 476 #endif
483
484 #endif