Diff

util-src/hashes.c @ 6791:e813e8cf6046

Merge 0.10->trunk
author Kim Alvefur <zash@zash.se>
date Thu, 20 Aug 2015 13:05:22 +0200
parent 6789:6b180e77c97a
child 7818:54669df178c2
line wrap: on
line diff
--- a/util-src/hashes.c	Mon Aug 17 01:58:53 2015 +0200
+++ b/util-src/hashes.c	Thu Aug 20 13:05:22 2015 +0200
@@ -27,8 +27,8 @@
 #include <openssl/sha.h>
 #include <openssl/md5.h>
 
-#if (LUA_VERSION_NUM == 502)
-#define luaL_register(L, N, R) luaL_setfuncs(L, R, 0)
+#if (LUA_VERSION_NUM == 501)
+#define luaL_setfuncs(L, R, N) luaL_register(L, NULL, R)
 #endif
 
 #define HMAC_IPAD 0x36363636
@@ -213,7 +213,7 @@
 
 LUALIB_API int luaopen_util_hashes(lua_State* L) {
 	lua_newtable(L);
-	luaL_register(L, NULL, Reg);
+	luaL_setfuncs(L, Reg, 0);;
 	lua_pushliteral(L, "-3.14");
 	lua_setfield(L, -2, "version");
 	return 1;