diff options
author | Jim McDonough <jmcd@samba.org> | 2003-02-19 00:27:38 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2003-02-19 00:27:38 +0000 |
commit | a0913929ef6f1e34ff2654e8773c8bf45c6230af (patch) | |
tree | 9b02bac14e9870e5415e58e3e83cc80919cd836d /source3/lib | |
parent | 0ff05c7f66a6321bac3bb699e30a7c49ddbefdfd (diff) | |
download | samba-a0913929ef6f1e34ff2654e8773c8bf45c6230af.tar.gz samba-a0913929ef6f1e34ff2654e8773c8bf45c6230af.tar.bz2 samba-a0913929ef6f1e34ff2654e8773c8bf45c6230af.zip |
base64_decode() with heimdal libs, so I've renamed it base64_decode_inplace().
(This used to be commit 8c69212eeb4a0ec144b960d76319fd4940b8c239)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index 8fe04f0f58..cc4b6fe5c5 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -1585,7 +1585,7 @@ DATA_BLOB base64_decode_data_blob(const char *s) /** * Decode a base64 string in-place - wrapper for the above **/ -void base64_decode(char *s) +void base64_decode_inplace(char *s) { DATA_BLOB decoded = base64_decode_data_blob(s); memcpy(s, decoded.data, decoded.length); |