Remove an useless increment in arc4. Signed-off-by: Mikulas Patocka --- crypto/arc4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6.25.3/crypto/arc4.c =================================================================== --- linux-2.6.25.3.orig/crypto/arc4.c 2008-05-23 21:04:52.000000000 +0200 +++ linux-2.6.25.3/crypto/arc4.c 2008-05-23 21:05:01.000000000 +0200 @@ -64,7 +64,7 @@ static void arc4_crypt(struct crypto_tfm S[x] = b; S[y] = a; x = (x + 1) & 0xff; - *out++ = *in ^ S[(a + b) & 0xff]; + *out = *in ^ S[(a + b) & 0xff]; ctx->x = x; ctx->y = y;