The branch, v3-2-stable has been updated
via 8aa259d232aca22afab9c0bf8b95fcededf53b05 (commit)
from a28f3a6e02f3d97980a7581a0aa032233f802e83 (commit)
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-stable
- Log -----------------------------------------------------------------
commit 8aa259d232aca22afab9c0bf8b95fcededf53b05
Author: Igor Mammedov <[EMAIL PROTECTED]>
Date: Mon Aug 18 09:55:44 2008 -0700
Fix length error in wrapping spnego blob. Karoling this needs to be in
3.2.2 (sorry).
(cherry picked from commit e2caa65a698ca7109aa44656ff9399104cf0663b)
-----------------------------------------------------------------------
Summary of changes:
source/libsmb/clikrb5.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source/libsmb/clikrb5.c b/source/libsmb/clikrb5.c
index d30cc54..a7ca24f 100644
--- a/source/libsmb/clikrb5.c
+++ b/source/libsmb/clikrb5.c
@@ -1870,7 +1870,7 @@ static krb5_error_code ads_krb5_get_fwd_ticket(
krb5_context context,
}
/* We now have a service ticket, now turn it into an AP-REQ. */
- authenticator->length = ntohs(fwdData.length + GSSAPI_CHECKSUM_SIZE);
+ authenticator->length = fwdData.length + GSSAPI_CHECKSUM_SIZE;
/* Caller should call free() when they're done with this. */
authenticator->data = (char *)pChksum;
--
Samba Shared Repository