aboutsummaryrefslogtreecommitdiff
path: root/src/udp.c
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2004-06-04 15:15:45 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2004-06-04 15:15:45 +0000
commit9ed7f955e5fc69af9bf1794fa2c8cd227981ba24 (patch)
tree8c3521366ef84f534bbec278437be7ea24e2ac1c /src/udp.c
parent63d60223da9de60f873ca08a25dbd9512c998929 (diff)
downloadluasocket-9ed7f955e5fc69af9bf1794fa2c8cd227981ba24.tar.gz
luasocket-9ed7f955e5fc69af9bf1794fa2c8cd227981ba24.tar.bz2
luasocket-9ed7f955e5fc69af9bf1794fa2c8cd227981ba24.zip
Só pra não perder se der merda.
Diffstat (limited to 'src/udp.c')
-rw-r--r--src/udp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/udp.c b/src/udp.c
index 19cefe6..4770a2e 100644
--- a/src/udp.c
+++ b/src/udp.c
@@ -90,8 +90,7 @@ int udp_open(lua_State *L)
90 aux_add2group(L, "udp{connected}", "select{able}"); 90 aux_add2group(L, "udp{connected}", "select{able}");
91 aux_add2group(L, "udp{unconnected}", "select{able}"); 91 aux_add2group(L, "udp{unconnected}", "select{able}");
92 /* define library functions */ 92 /* define library functions */
93 luaL_openlib(L, LUASOCKET_LIBNAME, func, 0); 93 luaL_openlib(L, NULL, func, 0);
94 lua_pop(L, 1);
95 return 0; 94 return 0;
96} 95}
97 96