summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/lib/util_str.c2
-rw-r--r--source3/web/cgi.c2
2 files changed, 2 insertions, 2 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);
diff --git a/source3/web/cgi.c b/source3/web/cgi.c
index 46f33789bf..8abc2f0bd5 100644
--- a/source3/web/cgi.c
+++ b/source3/web/cgi.c
@@ -306,7 +306,7 @@ static BOOL cgi_handle_authorization(char *line)
}
line += 6;
while (line[0] == ' ') line++;
- base64_decode(line);
+ base64_decode_inplace(line);
if (!(p=strchr_m(line,':'))) {
/*
* Always give the same error so a cracker