From f0cfb8cb45cb1fc91c77fae98f5452b7f7865392 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 20 Jan 2014 20:10:37 +0200 Subject: [PATCH] Don't preimport socket module. --- unix/socket.c | 1 - 1 file changed, 1 deletion(-) diff --git a/unix/socket.c b/unix/socket.c index 7da6bb20d..e48d8545f 100644 --- a/unix/socket.c +++ b/unix/socket.c @@ -318,5 +318,4 @@ void rawsocket_init() { STORE_INT_CONST(m, SOCK_STREAM); STORE_INT_CONST(m, SOCK_DGRAM); STORE_INT_CONST(m, SOCK_RAW); - rt_store_name(qstr_from_str_static("rawsocket"), m); }