Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2011-05-27 14:00:46 +0400
committerIgor Sysoev <igor@sysoev.ru>2011-05-27 14:00:46 +0400
commite620fdac652e1cbb6a22b5a2cb1ce8edd29bd3b8 (patch)
tree9688250236e6302050b84270aeea035e1de70db1 /src/core/ngx_md5.h
parentc4793b650579a0475e7d2e61d1530887962bdb7e (diff)
make built-in ngx_md5_update() interface consistent with other implemenations
Diffstat (limited to 'src/core/ngx_md5.h')
-rw-r--r--src/core/ngx_md5.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_md5.h b/src/core/ngx_md5.h
index 93fa25d1a..45a1011bb 100644
--- a/src/core/ngx_md5.h
+++ b/src/core/ngx_md5.h
@@ -50,7 +50,7 @@ typedef struct {
void ngx_md5_init(ngx_md5_t *ctx);
-void ngx_md5_update(ngx_md5_t *ctx, const u_char *data, size_t size);
+void ngx_md5_update(ngx_md5_t *ctx, const void *data, size_t size);
void ngx_md5_final(u_char result[16], ngx_md5_t *ctx);