summaryrefslogtreecommitdiff
path: root/encoding
diff options
context:
space:
mode:
Diffstat (limited to 'encoding')
-rw-r--r--encoding/apr_base64.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/encoding/apr_base64.c b/encoding/apr_base64.c
index 533859130..d553631dc 100644
--- a/encoding/apr_base64.c
+++ b/encoding/apr_base64.c
@@ -139,8 +139,9 @@ APR_DECLARE(int) apr_base64_decode(char *bufplain, const char *bufcoded)
return len;
}
-/* This is the same as apr_base64_decode() except on EBCDIC machines, where
- * the conversion of the output to ebcdic is left out.
+/* This is the same as apr_base64_decode() except:
+ * - no \0 is appended
+ * - on EBCDIC machines, the conversion of the output to ebcdic is left out
*/
APR_DECLARE(int) apr_base64_decode_binary(unsigned char *bufplain,
const char *bufcoded)