mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-22 14:39:24 -05:00
typo fix
[originally from svn r213]
This commit is contained in:
parent
c67315fd39
commit
1cd70649c1
2
ssh.c
2
ssh.c
@ -605,7 +605,7 @@ static void ssh_opened(Session *sess) {
|
|||||||
* has closed, or <0 for a socket error.
|
* has closed, or <0 for a socket error.
|
||||||
*/
|
*/
|
||||||
static int ssh_msg (Session *sess, SOCKET sock, Net_Event_Type ne) {
|
static int ssh_msg (Session *sess, SOCKET sock, Net_Event_Type ne) {
|
||||||
struct ssh_private *sp = (struct ssh_provate *)sess->back_priv;
|
struct ssh_private *sp = (struct ssh_private *)sess->back_priv;
|
||||||
int ret;
|
int ret;
|
||||||
char buf[256];
|
char buf[256];
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ void random_add_noise(void *noise, int length) {
|
|||||||
pool.incomingpos = 0;
|
pool.incomingpos = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
memcpy(pool.incomingb + pool_incomingpos, p, length);
|
memcpy(pool.incomingb + pool.incomingpos, p, length);
|
||||||
pool.incomingpos += length;
|
pool.incomingpos += length;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user