Use znc.in instead of znc.com

No cookie for that domain catcher at znc.com!


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1181 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2008-08-30 09:00:21 +00:00
parent 687d7ae894
commit 02beef2e07
9 changed files with 32 additions and 32 deletions

View File

@@ -204,7 +204,7 @@ public:
void Replay(const CString & sChan)
{
CString sFile;
PutUser(":***!znc@znc.com PRIVMSG " + sChan + " :Buffer Playback...");
PutUser(":***!znc@znc.in PRIVMSG " + sChan + " :Buffer Playback...");
if (DecryptChannel(sChan, sFile))
{
CString sLine;
@@ -215,7 +215,7 @@ public:
PutUser(sLine);
}
}
PutUser(":***!znc@znc.com PRIVMSG " + sChan + " :Playback Complete.");
PutUser(":***!znc@znc.in PRIVMSG " + sChan + " :Playback Complete.");
}
CString GetPath(const CString & sChannel)
@@ -228,7 +228,7 @@ public:
CString SpoofChanMsg(const CString & sChannel, const CString & sMesg)
{
CString sReturn = ":*" + GetModName() + "!znc@znc.com PRIVMSG " + sChannel + " :" + CString(time(NULL)) + " " + sMesg;
CString sReturn = ":*" + GetModName() + "!znc@znc.in PRIVMSG " + sChannel + " :" + CString(time(NULL)) + " " + sMesg;
return(sReturn);
}