From 140bafe54469d7d7f97ffd77d44ce105ae2c6c52 Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 19 Apr 2004 22:50:38 +0000 Subject: [PATCH] Some fixes here git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@679 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_helpop.cpp | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) 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); } -- 2.39.5