From: Ben Harris Date: Sun, 5 Jan 2003 23:32:19 +0000 (+0000) Subject: rsa2_sign() is unused outside this file. Make it static. X-Git-Tag: r8855-g4f798d~1829 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=04a2f1e4177cab033a333199bdd9cefd2f3fe2f3;p=PuTTY_svn.git rsa2_sign() is unused outside this file. Make it static. git-svn-id: http://svn.tartarus.org/sgt/putty@2483 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/sshrsa.c b/sshrsa.c index 92c1ac91..e95f8b63 100644 --- a/sshrsa.c +++ b/sshrsa.c @@ -613,7 +613,8 @@ static int rsa2_verifysig(void *key, char *sig, int siglen, return ret; } -unsigned char *rsa2_sign(void *key, char *data, int datalen, int *siglen) +static unsigned char *rsa2_sign(void *key, char *data, int datalen, + int *siglen) { struct RSAKey *rsa = (struct RSAKey *) key; unsigned char *bytes;