util-src/*.c: Don't create globals when loaded

This commit is contained in:
Kim Alvefur 2014-09-16 21:56:18 +02:00
parent a685dfb89e
commit c57e98cd7d
6 changed files with 11 additions and 11 deletions

View file

@ -112,6 +112,7 @@ int luaopen_util_net(lua_State* L)
{ NULL, NULL }
};
luaL_register(L, "net", exports);
lua_newtable(L);
luaL_register(L, NULL, exports);
return 1;
}