From 4685d44ff8a32770604d7e66a5799f32b5f3d59c Mon Sep 17 00:00:00 2001 From: henri Date: Tue, 30 Apr 2013 07:12:03 +0000 Subject: [PATCH] Removed a superfluous nsock_set_proxychain() statement. This call got duplicated during the merge and provoked non-fatal nsock errors like: NSOCK ERROR [0.0310s] nsp_set_proxychain(): Invalid call. Existing proxychain on this nsock_pool --- nse_nsock.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/nse_nsock.cc b/nse_nsock.cc index af5cfb119..69e12aaf4 100644 --- a/nse_nsock.cc +++ b/nse_nsock.cc @@ -92,10 +92,6 @@ static nsock_pool new_pool (lua_State *L) nsp_setbroadcast(nsp, true); - if (o.proxy_chain) { - nsp_set_proxychain(nsp, o.proxy_chain); - } - nspp = (nsock_pool *) lua_newuserdata(L, sizeof(nsock_pool)); *nspp = nsp; lua_newtable(L);