From 258793168b476fecb754d27c9f31303cb5d37121 Mon Sep 17 00:00:00 2001 From: psychon Date: Sun, 14 Sep 2008 06:05:23 +0000 Subject: [PATCH] Bugfix in keepnick: PutUser() vs PutModule() screwup Sorry, my bad. Thanks to SilverLeo for finding and fixing this. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1203 726aef4b-f618-498e-8847-2d620e286838 --- modules/keepnick.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/keepnick.cpp b/modules/keepnick.cpp index af31189d..264f0fde 100644 --- a/modules/keepnick.cpp +++ b/modules/keepnick.cpp @@ -135,11 +135,11 @@ public: PutModule("No longer trying to get your primary nick"); } else if (sCmd == "STATE") { if (m_pTimer) - PutUser("Currently trying to get your primary nick"); + PutModule("Currently trying to get your primary nick"); else - PutUser("Currently disabled, try 'enable'"); + PutModule("Currently disabled, try 'enable'"); } else { - PutUser("Commands: Enable, Disable, State"); + PutModule("Commands: Enable, Disable, State"); } }