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:
3
sshdh.c
3
sshdh.c
@ -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;
|
||||
|
Reference in New Issue
Block a user