summaryrefslogtreecommitdiff
path: root/source3/lib/util_str.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/util_str.c')
-rw-r--r--source3/lib/util_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c
index 60e0e3837f..21361a1862 100644
--- a/source3/lib/util_str.c
+++ b/source3/lib/util_str.c
@@ -1578,7 +1578,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);