From: brain Date: Mon, 19 Apr 2004 22:50:38 +0000 (+0000) Subject: Some fixes here X-Git-Tag: v2.0.23~10909 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=140bafe54469d7d7f97ffd77d44ce105ae2c6c52;p=user%2Fhenk%2Fcode%2Finspircd.git Some fixes here git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@679 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/modules/m_helpop.cpp b/src/modules/m_helpop.cpp index 1a7968b7f..2e30ae86a 100644 --- a/src/modules/m_helpop.cpp +++ b/src/modules/m_helpop.cpp @@ -73,29 +73,28 @@ bool do_helpop(char **parameters, int pcnt, userrec *src) std::string output = " "; // a fix bought to you by brain :p char a[MAXBUF]; - if (!parameters) { strcpy(search, "start"); } - else { search = parameters[0]; } - - if (search[0] == '?') { search++; } - - // Make sure it exists. - if (helpop->ReadValue(std::string(search), "line1", 0) == "") - { - // Tell caller.. - return false; - } + if (!parameters) { + search = "start"; + } + else { + search = parameters[0]; + } - // Somethings there.. tell the person who wants to know :p + if (search[0] == '?') { + search++; + } + int nlines = 0; for (int i = 1; output != ""; i++) { snprintf(a,MAXBUF,"line%d",i); output = helpop->ReadValue(std::string(search), std::string(a), 0); if (output != "") { Srv->SendTo(NULL,src,"290 "+std::string(src->nick)+" :"+output); + nlines++; } } - return true; + return (nlines>0); }