1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00
[originally from svn r213]
This commit is contained in:
Ben Harris 1999-09-01 22:28:03 +00:00
parent c67315fd39
commit 1cd70649c1
2 changed files with 2 additions and 2 deletions

2
ssh.c
View File

@ -605,7 +605,7 @@ static void ssh_opened(Session *sess) {
* has closed, or <0 for a socket error.
*/
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;
char buf[256];

View File

@ -52,7 +52,7 @@ void random_add_noise(void *noise, int length) {
pool.incomingpos = 0;
}
memcpy(pool.incomingb + pool_incomingpos, p, length);
memcpy(pool.incomingb + pool.incomingpos, p, length);
pool.incomingpos += length;
}