Author: jra Date: 2005-09-01 06:28:17 +0000 (Thu, 01 Sep 2005) New Revision: 9875
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=9875 Log: Merge Andrew Bartlett's patch - keep in sync with HEAD. Jeremy. Modified: branches/tmp/RPCREWRITE/source/utils/ntlm_auth.c Changeset: Modified: branches/tmp/RPCREWRITE/source/utils/ntlm_auth.c =================================================================== --- branches/tmp/RPCREWRITE/source/utils/ntlm_auth.c 2005-09-01 06:26:04 UTC (rev 9874) +++ branches/tmp/RPCREWRITE/source/utils/ntlm_auth.c 2005-09-01 06:28:17 UTC (rev 9875) @@ -693,7 +693,8 @@ data_blob_free(&reply); DEBUG(10, ("NTLMSSP challenge\n")); } else if (NT_STATUS_IS_OK(nt_status)) { - x_fprintf(x_stdout, "AF\n"); + char *reply_base64 = base64_encode_data_blob(reply); + x_fprintf(x_stdout, "AF %s\n", reply_base64); DEBUG(10, ("NTLMSSP OK!\n")); if (ntlmssp_state) ntlmssp_end(&ntlmssp_state);
