From: Ben Harris Date: Wed, 1 Sep 1999 22:28:03 +0000 (+0000) Subject: typo fix X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=1cd70649c1b1d8c544c97d841f9008463da0db87;p=PuTTY.git typo fix [originally from svn r213] --- diff --git a/ssh.c b/ssh.c index 789ee60c..4273ea3a 100644 --- a/ssh.c +++ b/ssh.c @@ -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]; diff --git a/sshrand.c b/sshrand.c index b3bd08bf..e739113a 100644 --- a/sshrand.c +++ b/sshrand.c @@ -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; }