1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 12:02:47 -05:00

Placate gcc's `-Wall' warnings.

[originally from svn r1121]
This commit is contained in:
Simon Tatham
2001-05-13 14:02:28 +00:00
parent 93e27a40ae
commit fb473cc16c
14 changed files with 79 additions and 71 deletions

View File

@ -34,7 +34,6 @@ static unsigned char G[] = { 2 };
* Variables.
*/
static Bignum x, e, p, q, qmask, g;
static int need_to_free_pg;
/*
* Common DH initialisation.
@ -116,7 +115,7 @@ Bignum dh_create_e(int nbits)
} else {
int b, nb;
x = bn_power_2(nbits);
nb = 0;
b = nb = 0;
for (i = 0; i < nbits; i++) {
if (nb == 0) {
nb = 8;