Remove CSocket::m_sLabel since it isn't really used at all

It doesn't really make much sense either, because Csock already has contains
a socket name member which can be used for this. This is exactly what this
patch does.


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1229 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2008-09-29 13:34:42 +00:00
parent 051e1f81d8
commit 3014ae5dcb
3 changed files with 21 additions and 20 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ class CIMAPAuthMod;
class CIMAPSock : public CSocket {
public:
CIMAPSock(CIMAPAuthMod* pModule, CSmartPtr<CAuthBase> Auth)
: CSocket((CModule*) pModule, "IMAPMod"), m_spAuth(Auth) {
: CSocket((CModule*) pModule), m_spAuth(Auth) {
m_pIMAPMod = pModule;
m_bSentReply = false;
m_bSentLogin = false;