From 3e49639cc96c068a6ef307234f503de3808c30c7 Mon Sep 17 00:00:00 2001 From: psychon Date: Tue, 16 Mar 2010 09:23:32 +0000 Subject: [PATCH] Really fix auth modules It turns out that there was still another Close() hiding in CHTTPSock which made stuff fail. However, just removing it fixes stuff. Thanks to DarthGandalf for noticing that my fix wasn't fixing the bug that was bugging him. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1835 726aef4b-f618-498e-8847-2d620e286838 --- HTTPSock.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/HTTPSock.cpp b/HTTPSock.cpp index 68251674..146df8e4 100644 --- a/HTTPSock.cpp +++ b/HTTPSock.cpp @@ -65,7 +65,6 @@ void CHTTPSock::CheckPost() { GetPage(); m_sPostData.clear(); m_bDone = true; - Close(Csock::CLT_AFTERWRITE); } }