mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-06-30 19:12:48 -05:00
Fix various fiddly little warnings.
[originally from svn r1298]
This commit is contained in:
2
sshdss.c
2
sshdss.c
@ -19,7 +19,6 @@
|
||||
|
||||
static void sha_mpint(SHA_State * s, Bignum b)
|
||||
{
|
||||
unsigned char *p;
|
||||
unsigned char lenbuf[4];
|
||||
int len;
|
||||
len = (bignum_bitcount(b) + 8) / 8;
|
||||
@ -34,7 +33,6 @@ static void sha_mpint(SHA_State * s, Bignum b)
|
||||
|
||||
static void sha512_mpint(SHA512_State * s, Bignum b)
|
||||
{
|
||||
unsigned char *p;
|
||||
unsigned char lenbuf[4];
|
||||
int len;
|
||||
len = (bignum_bitcount(b) + 8) / 8;
|
||||
|
Reference in New Issue
Block a user