From 08c221a5d636ac93bbfadf9bf34f33e032f3c24c Mon Sep 17 00:00:00 2001 From: prozacx Date: Thu, 16 Mar 2006 04:50:00 +0000 Subject: [PATCH] Fixed var name git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@693 726aef4b-f618-498e-8847-2d620e286838 --- Utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils.h b/Utils.h index 6d2aa1fa..7060779c 100644 --- a/Utils.h +++ b/Utils.h @@ -405,7 +405,7 @@ public: // Overloaded operators T& operator *() const { assert(m_pType); return *m_pType; } T* operator ->() const { assert(m_pType); return m_pType; } - bool operator ==(T* rhs) { return (m_pType == p); } + bool operator ==(T* rhs) { return (m_pType == rhs); } bool operator ==(const CSmartPtr& rhs) { return (m_pType == *rhs); } /**