Fix another bignum formatting problem. This one hit Diffie-Hellmann

[originally from svn r761]
This commit is contained in:
Simon Tatham 2000-10-24 21:43:39 +00:00
Родитель fc9b38ed01
Коммит 809bd81d5c
1 изменённых файлов: 1 добавлений и 0 удалений

1
ssh.c
Просмотреть файл

@ -849,6 +849,7 @@ static Bignum ssh2_pkt_getmp(void) {
else
b[j/2+1] |= ((unsigned char)p[i]);
}
while (b[0] > 1 && b[b[0]] == 0) b[0]--;
return b;
}