summaryrefslogtreecommitdiff
path: root/source4/torture/rpc
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-02-08 18:24:48 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:44:52 -0500
commitf7959890d4e0e91f6e11cd1d2d0a209bca098800 (patch)
tree7ea71aef13e3efba461fac29dc2ec969c3953420 /source4/torture/rpc
parent2bf68b496409a6962b4fadb2a219f30c22cb5680 (diff)
downloadsamba-f7959890d4e0e91f6e11cd1d2d0a209bca098800.tar.gz
samba-f7959890d4e0e91f6e11cd1d2d0a209bca098800.tar.bz2
samba-f7959890d4e0e91f6e11cd1d2d0a209bca098800.zip
r21244: fix typo...
I was wondering why I got allways 4 times the same decrypted buffer... metze (This used to be commit ba168479d5c5710de4252d9b8970ab41b7979411)
Diffstat (limited to 'source4/torture/rpc')
-rw-r--r--source4/torture/rpc/dssync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/rpc/dssync.c b/source4/torture/rpc/dssync.c
index 81ebc63d94..9f171c4a00 100644
--- a/source4/torture/rpc/dssync.c
+++ b/source4/torture/rpc/dssync.c
@@ -498,7 +498,7 @@ static void do_decryption_v01(TALLOC_CTX *mem_ctx,
plain_buffer = data_blob_talloc(mem_ctx, enc_buffer->data, enc_buffer->length);
- arcfour_crypt_blob(plain_buffer.data, plain_buffer.length, enc_buffer);
+ arcfour_crypt_blob(plain_buffer.data, plain_buffer.length, enc_key);
*_plain_buffer = plain_buffer;
}