From b5ace4ad4700992f7e00b9d383c18f9ce0559a0f Mon Sep 17 00:00:00 2001 From: prozacx Date: Wed, 1 Jun 2005 23:17:17 +0000 Subject: [PATCH] Changed case on itimeout git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@377 726aef4b-f618-498e-8847-2d620e286838 --- DCCBounce.h | 2 +- DCCSock.h | 2 +- UserSock.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DCCBounce.h b/DCCBounce.h index f24b7590..65a217dc 100644 --- a/DCCBounce.h +++ b/DCCBounce.h @@ -25,7 +25,7 @@ public: } } - CDCCBounce(const CString& sHostname, unsigned short uPort, CUser* pUser, const CString& sRemoteNick, const CString& sRemoteIP, const CString& sFileName, int itimeout = 60, bool bIsChat = false) : Csock(sHostname, uPort, itimeout) { + CDCCBounce(const CString& sHostname, unsigned short uPort, CUser* pUser, const CString& sRemoteNick, const CString& sRemoteIP, const CString& sFileName, int iTimeout = 60, bool bIsChat = false) : Csock(sHostname, uPort, iTimeout) { m_uRemotePort = 0; m_bIsChat = bIsChat; m_pManager = pUser->GetManager(); diff --git a/DCCSock.h b/DCCSock.h index 1e6f861a..a711a940 100644 --- a/DCCSock.h +++ b/DCCSock.h @@ -35,7 +35,7 @@ public: m_bNoDelFile = false; } -/* CDCCSock(CUser* pUser, const CString& sHostname, unsigned short uPort, int itimeout = 60) : Csock(sHostname, uPort, itimeout) { +/* CDCCSock(CUser* pUser, const CString& sHostname, unsigned short uPort, int iTimeout = 60) : Csock(sHostname, uPort, iTimeout) { m_uRemotePort = 0; m_uBytesSoFar = 0; m_uFileSize = 0; diff --git a/UserSock.h b/UserSock.h index 707404dc..bb833f2b 100644 --- a/UserSock.h +++ b/UserSock.h @@ -15,7 +15,7 @@ public: CUserSock() : Csock() { Init(); } - CUserSock(const CString& sHostname, unsigned short uPort, int itimeout = 60) : Csock(sHostname, uPort, itimeout) { + CUserSock(const CString& sHostname, unsigned short uPort, int iTimeout = 60) : Csock(sHostname, uPort, iTimeout) { Init(); } virtual ~CUserSock() {}