Skip to content
Snippets Groups Projects
Commit d5a78fb6 authored by Jurie Horneman's avatar Jurie Horneman
Browse files

Fixed bug.

parent 1b3a1b74
No related branches found
No related tags found
No related merge requests found
...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment