From 37094078272c82f5fec965cf64f16ebcf663132c Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 11 Aug 1999 08:50:36 +0000 Subject: [PATCH] Small but highly unhelpful typo [originally from svn r198] --- sshrand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }