From 25b94718f108036961619c4a7451e0cf1d8ba72a Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 10 Aug 2005 22:27:55 +0000 Subject: r9234: Ensure we always change the end of the PAC, no matter what it is. Fix typo in comment. Andrew Bartlett (This used to be commit c96f8594b16c6a5310e2e8727bb6975f2a193231) --- source4/torture/auth/pac.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/torture/auth') diff --git a/source4/torture/auth/pac.c b/source4/torture/auth/pac.c index c6bec47238..65bb5456cc 100644 --- a/source4/torture/auth/pac.c +++ b/source4/torture/auth/pac.c @@ -413,7 +413,7 @@ static BOOL torture_pac_saved_check(void) krb5_free_keyblock_contents(smb_krb5_context->krb5_context, &server_keyblock); - DEBUG(0, ("PAC push failed: orignial buffer length[%u] != created buffer length[%u]\n", + DEBUG(0, ("PAC push failed: original buffer length[%u] != created buffer length[%u]\n", (unsigned)tmp_blob.length, (unsigned)validate_blob.length)); talloc_free(mem_ctx); return False; @@ -432,8 +432,8 @@ static BOOL torture_pac_saved_check(void) } /* Finally... Bugger up the signature, and check we fail the checksum */ - - tmp_blob.data[tmp_blob.length - 2] = 0xff; + tmp_blob.data[tmp_blob.length - 2]++; + nt_status = kerberos_decode_pac(mem_ctx, &pac_data, tmp_blob, smb_krb5_context, -- cgit