diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-06-19 01:31:27 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:29 -0500 |
commit | 56cc32800036472ebc29362d65e422c0b410e3fc (patch) | |
tree | cc590e85fde04ffac6dc296cfdb4a9844126b6e8 /source4/utils | |
parent | 814d5a5011038164dd55dd9e593989f69cedef0d (diff) | |
download | samba-56cc32800036472ebc29362d65e422c0b410e3fc.tar.gz samba-56cc32800036472ebc29362d65e422c0b410e3fc.tar.bz2 samba-56cc32800036472ebc29362d65e422c0b410e3fc.zip |
r7740: get rid of our duplicate base64 routines
(This used to be commit cf17f90a83cf04815544c5408eb56d00546b3e88)
Diffstat (limited to 'source4/utils')
-rw-r--r-- | source4/utils/ntlm_auth.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/utils/ntlm_auth.c b/source4/utils/ntlm_auth.c index 3a94d82c0c..fe857f3bc8 100644 --- a/source4/utils/ntlm_auth.c +++ b/source4/utils/ntlm_auth.c @@ -244,7 +244,7 @@ static void manage_gensec_get_pw_request(enum stdio_helper_mode stdio_helper_mod } if (strlen(buf) > 3) { - in = base64_decode_data_blob(buf + 3); + in = base64_decode_data_blob(NULL, buf + 3); } else { in = data_blob(NULL, 0); } @@ -309,7 +309,7 @@ static void manage_gensec_request(enum stdio_helper_mode stdio_helper_mode, } if (strlen(buf) > 3) { - in = base64_decode_data_blob(buf + 3); + in = base64_decode_data_blob(NULL, buf + 3); } else { in = data_blob(NULL, 0); } @@ -450,7 +450,7 @@ static void manage_gensec_request(enum stdio_helper_mode stdio_helper_mode, nt_status = auth_nt_status_squash(nt_status); if (out.length) { - out_base64 = base64_encode_data_blob(out); + out_base64 = base64_encode_data_blob(NULL, out); } else { out_base64 = NULL; } |