Modified:
/src/shacrypt.c
=======================================
--- /src/shacrypt.c Sat Mar 13 07:34:32 2010
+++ /src/shacrypt.c Sat Mar 13 07:53:27 2010
@@ -424,7 +424,7 @@
SHA1Input( &ctx->scramble_sha1, ctx->scramblekey,
ctx->scramblelen );
SHA1Result( &ctx->scramble_sha1, ctx->scramble_sha1_res );
}
- c ^= scramble_ctx->sha1_res[ctx->scramble_sha1_ptr];
+ c ^= ctx->scramble_sha1_res[ctx->scramble_sha1_ptr];
ctx->scramble_sha1_ptr++;
}
@@ -543,7 +543,7 @@
SHA1Input( &ctx->scramble_sha1, ctx->scramblekey,
ctx->scramblelen );
SHA1Result( &ctx->scramble_sha1, ctx->scramble_sha1_res );
}
- c ^= scramble_ctx->sha1_res[ctx->scramble_sha1_ptr];
+ c ^= ctx->scramble_sha1_res[ctx->scramble_sha1_ptr];
ctx->scramble_sha1_ptr++;
}