From c6837de02271ad2cdddc4959dd85af98e2c03f7c Mon Sep 17 00:00:00 2001 From: Marcus Clyne Date: Wed, 13 Oct 2010 18:21:31 +0100 Subject: [PATCH] Update ndk_md5_hash() to work with updated NDK --- src/ngx_http_lua_hook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngx_http_lua_hook.c b/src/ngx_http_lua_hook.c index 33d263e9ae..68c1230785 100644 --- a/src/ngx_http_lua_hook.c +++ b/src/ngx_http_lua_hook.c @@ -917,7 +917,7 @@ ngx_http_lua_ngx_md5(lua_State *L) return NGX_ERROR; } - ndk_md5_lower_hash((char *) p, (char *) src, slen); + ndk_md5_hash(p, (char *) src, slen); lua_pushlstring(L, (char *) p, len);