]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Small but highly unhelpful typo 0.47
authorSimon Tatham <anakin@pobox.com>
Wed, 11 Aug 1999 08:50:36 +0000 (08:50 +0000)
committerSimon Tatham <anakin@pobox.com>
Wed, 11 Aug 1999 08:50:36 +0000 (08:50 +0000)
[originally from svn r198]

sshrand.c

index b3bd08bfd2d7c95b2d4f0625f24946f52bb20233..e739113aa800b7108063a16a4e0a594416563ee5 100644 (file)
--- 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;
 }