From: Klas Lindfors Date: Tue, 18 Sep 2012 07:29:30 +0000 (+0200) Subject: make local functions static X-Git-Tag: v1.8.0~50 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45c009340ae74fda528e90b8126dfd0dc0564bf6;p=yubikey-personalization make local functions static --- diff --git a/ykchalresp.c b/ykchalresp.c index f8bc188..2a54972 100644 --- a/ykchalresp.c +++ b/ykchalresp.c @@ -155,7 +155,7 @@ int parse_args(int argc, char **argv, return 1; } -int check_firmware(YK_KEY *yk, bool verbose) +static int check_firmware(YK_KEY *yk, bool verbose) { YK_STATUS *st = ykds_alloc(); @@ -184,7 +184,7 @@ int check_firmware(YK_KEY *yk, bool verbose) return 1; } -int challenge_response(YK_KEY *yk, int slot, +static int challenge_response(YK_KEY *yk, int slot, unsigned char *challenge, unsigned int len, bool hmac, bool may_block, bool verbose) {