summaryrefslogtreecommitdiff
path: root/include/apr_md5.h
diff options
context:
space:
mode:
authorgstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2003-01-21 20:27:58 +0000
committergstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2003-01-21 20:27:58 +0000
commit955342e6e2f101cfe5aa81dc8927002a83f33099 (patch)
tree5b5b1eccc1863d0cfc00d12018b2df354381a92d /include/apr_md5.h
parent149a204dd34434d3611f47e8918afd1bb668aa00 (diff)
downloadlibapr-util-955342e6e2f101cfe5aa81dc8927002a83f33099.tar.gz
Callers just have blocks of bytes specified by a ptr/len pair.
Invariably, they will not be "unsigned char" buffers, so let's fix the typing here. git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@58833 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_md5.h')
-rw-r--r--include/apr_md5.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_md5.h b/include/apr_md5.h
index ff2a1c72..8208969e 100644
--- a/include/apr_md5.h
+++ b/include/apr_md5.h
@@ -145,7 +145,7 @@ APU_DECLARE(apr_status_t) apr_md5_set_xlate(apr_md5_ctx_t *context,
* @param inputLen The length of the next message block
*/
APU_DECLARE(apr_status_t) apr_md5_update(apr_md5_ctx_t *context,
- const unsigned char *input,
+ const void *input,
apr_size_t inputLen);
/**
@@ -164,7 +164,7 @@ APU_DECLARE(apr_status_t) apr_md5_final(unsigned char digest[MD5_DIGESTSIZE],
* @param inputLen The length of the message block
*/
APU_DECLARE(apr_status_t) apr_md5(unsigned char digest[MD5_DIGESTSIZE],
- const unsigned char *input,
+ const void *input,
apr_size_t inputLen);
/**