Commit d5a78fb6 authored by Jurie Horneman's avatar Jurie Horneman

Fixed bug.

parent 1b3a1b74
...@@ -114,9 +114,9 @@ int mg_authorize_digest(struct mg_connection *c, FILE *fp); ...@@ -114,9 +114,9 @@ int mg_authorize_digest(struct mg_connection *c, FILE *fp);
// Lua utility functions // Lua utility functions
#ifdef MONGOOSE_USE_LUA #ifdef MONGOOSE_USE_LUA
static void reg_string(struct lua_State *L, const char *name, const char *val); void reg_string(struct lua_State *L, const char *name, const char *val);
static void reg_int(struct lua_State *L, const char *name, int val); void reg_int(struct lua_State *L, const char *name, int val);
static void reg_function(struct lua_State *L, const char *name, void reg_function(struct lua_State *L, const char *name,
lua_CFunction func, struct mg_connection *conn); lua_CFunction func, struct mg_connection *conn);
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment