mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-06-30 19:12:48 -05:00
Having now compiled the last few days' changes with MSVC, it's turned
up a bunch of warnings, mostly unused variables. All fixed. [originally from svn r1058]
This commit is contained in:
2
sshrsa.c
2
sshrsa.c
@ -393,7 +393,7 @@ static void *rsa2_openssh_createkey(unsigned char **blob, int *len) {
|
||||
return rsa;
|
||||
}
|
||||
|
||||
static int *rsa2_openssh_fmtkey(void *key, unsigned char *blob, int len) {
|
||||
static int rsa2_openssh_fmtkey(void *key, unsigned char *blob, int len) {
|
||||
struct RSAKey *rsa = (struct RSAKey *)key;
|
||||
int bloblen, i;
|
||||
|
||||
|
Reference in New Issue
Block a user