1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

Fix a couple of silly compiler warnings

[originally from svn r1022]
This commit is contained in:
Simon Tatham 2001-03-23 09:20:43 +00:00
parent e3bcd35a37
commit 3a78d9dd09
2 changed files with 3 additions and 0 deletions

1
ssh.h
View File

@ -51,6 +51,7 @@ void rsasanitise(struct RSAKey *key);
int rsastr_len(struct RSAKey *key);
void rsastr_fmt(char *str, struct RSAKey *key);
void rsa_fingerprint(char *str, int len, struct RSAKey *key);
int rsa_verify(struct RSAKey *key);
void freersakey(struct RSAKey *key);
typedef unsigned int word32;

View File

@ -180,6 +180,8 @@ int rsa_verify(struct RSAKey *key) {
sfree(ed);
if (cmp != 0)
return 0;
return 1;
}
void freersakey(struct RSAKey *key) {