diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-02 09:34:46 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-02 09:34:46 +0000 |
commit | 270f1f8d19779a20231a4228286da5e5bf8b2be9 (patch) | |
tree | d6c244ef7a2341a5194352e5b767ae8c5519903d /src | |
parent | 5e386b10ca25434a65578e226b14c1344280c3a1 (diff) |
Fix for ID 86, reported by Special
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2107 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_randquote.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/modules/m_randquote.cpp b/src/modules/m_randquote.cpp index 22c3fe32f..71d54ce63 100644 --- a/src/modules/m_randquote.cpp +++ b/src/modules/m_randquote.cpp @@ -38,13 +38,18 @@ void handle_randquote(char** parameters, int pcntl, userrec *user) std::string str; int fsize; char buf[MAXBUF]; - if (quotes) + if (q_file == "" || quotes->Exists()) { fsize = quotes->FileSize(); str = quotes->GetLine(rand() % fsize); sprintf(buf,"NOTICE %s :%s%s%s",user->nick,prefix.c_str(),str.c_str(),suffix.c_str()); Srv->SendServ(user->fd, buf); } + else + { + sprintf(buf, "NOTICE %s :Your administrator specified an invalid quotes file, please bug them about this.", user->nick); + Srv->SendServ(user->fd, buf); + } return; } |