summaryrefslogtreecommitdiff
path: root/include/util_md5.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>1999-08-31 05:35:52 +0000
committerRyan Bloom <rbb@apache.org>1999-08-31 05:35:52 +0000
commitc37f14ddf32319a7d84a9b573a54ccde8f37c5ff (patch)
tree1f1dd08b2e53226b3b3363beee02eeb57a8061ca /include/util_md5.h
parente6991d4075b55b175a6fb0cfe849566f863f27ac (diff)
downloadhttpd-c37f14ddf32319a7d84a9b573a54ccde8f37c5ff.tar.gz
Changed pools to contexts. Tested with prefork and pthread mpm's. I'll
check this out tomorrow and make sure everything was checked in correctly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83852 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/util_md5.h')
-rw-r--r--include/util_md5.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/util_md5.h b/include/util_md5.h
index 58cfefd680..14e960522a 100644
--- a/include/util_md5.h
+++ b/include/util_md5.h
@@ -64,13 +64,13 @@ extern "C" {
#include "ap_md5.h"
-API_EXPORT(char *) ap_md5(pool *a, const unsigned char *string);
-API_EXPORT(char *) ap_md5_binary(pool *a, const unsigned char *buf, int len);
-API_EXPORT(char *) ap_md5contextTo64(pool *p, AP_MD5_CTX * context);
+API_EXPORT(char *) ap_md5(ap_context_t *a, const unsigned char *string);
+API_EXPORT(char *) ap_md5_binary(ap_context_t *a, const unsigned char *buf, int len);
+API_EXPORT(char *) ap_md5contextTo64(ap_context_t *p, AP_MD5_CTX * context);
#ifdef CHARSET_EBCDIC
-API_EXPORT(char *) ap_md5digest(pool *p, FILE *infile, int convert);
+API_EXPORT(char *) ap_md5digest(ap_context_t *p, FILE *infile, int convert);
#else
-API_EXPORT(char *) ap_md5digest(pool *p, APRFile infile);
+API_EXPORT(char *) ap_md5digest(ap_context_t *p, APRFile infile);
#endif /* CHARSET_EBCDIC */
#ifdef __cplusplus