diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-28 19:33:42 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-28 19:33:42 +0000 |
commit | c215eff073c70368ba25e1784103e5c9fbc7f935 (patch) | |
tree | d805a29a0146c6cce628761911496afe042cf0a5 /src/helperfuncs.cpp | |
parent | a1df1a79017469877faeb05243c8c9c9c0296a55 (diff) |
BanHiding
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3384 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/helperfuncs.cpp')
-rw-r--r-- | src/helperfuncs.cpp | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index 14455ed9b..eed073a35 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -748,12 +748,26 @@ void WriteCommonExcept(userrec *u, char* text, ...) split >> server_two; if ((FindServerName(server_one)) && (FindServerName(server_two))) { - strlcpy(oper_quit,textbuffer,MAXBUF); + strlcpy(oper_quit,textbuffer,MAXQUIT); strlcpy(check,"*.net *.split",MAXQUIT); quit_munge = true; } } } + if ((Config->HideBans) && (total > 13) && (!quit_munge)) + { + char* check = textbuffer; + if ((*check++ == 'Q') && (*check++ == 'U') && (*check++ == 'I') && (*check++ == 'T') && (*check++ == ' ') && (*check++ == ':')) + { + check++; + if ((*check++ == '-') && (*check++ == 'L') && (*check++ == 'i') && (*check++ == 'n') && (*check++ == 'e') && (*check++ == 'd') && (*check++ == ':')) + { + strlcpy(oper_quit,textbuffer,MAXQUIT); + *(--check) = 0; // We don't need to strlcpy, we just chop it from the : + quit_munge = true; + } + } + } memset(&already_sent,0,MAX_DESCRIPTORS); @@ -774,14 +788,7 @@ void WriteCommonExcept(userrec *u, char* text, ...) already_sent[otheruser->fd] = 1; if (quit_munge) { - if (*otheruser->oper) - { - WriteFrom_NoFormat(otheruser->fd,u,oper_quit); - } - else - { - WriteFrom_NoFormat(otheruser->fd,u,textbuffer); - } + WriteFrom_NoFormat(otheruser->fd,u,*otheruser->oper ? oper_quit : textbuffer); } else WriteFrom_NoFormat(otheruser->fd,u,textbuffer); } |