summaryrefslogtreecommitdiff
path: root/src/modules/m_helpop.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-26 11:48:09 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-26 11:48:09 +0000
commite2e581f0d3d5d844dc4b5210f566e5a5571a0570 (patch)
tree7e20006a6f4795a1fdf5e853dbe7a0941f917b32 /src/modules/m_helpop.cpp
parent3c24bb87211772859b6a9b74aefa85d57b07dfa7 (diff)
Server* Srv marked static or moved to private member of module class in all modules, paves way for removal of static-build-munging-regexp that breaks +eI
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3330 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_helpop.cpp')
-rw-r--r--src/modules/m_helpop.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/modules/m_helpop.cpp b/src/modules/m_helpop.cpp
index b3b3d113a..a76cb87a8 100644
--- a/src/modules/m_helpop.cpp
+++ b/src/modules/m_helpop.cpp
@@ -22,9 +22,8 @@ using namespace std;
#include "helperfuncs.h"
// Global Vars
-/* XXX - should all this be marked static? clear the global namespace, etc. */
-ConfigReader *helpop;
-Server *Srv;
+static ConfigReader *helpop;
+static Server *Srv;
void handle_helpop(char**, int, userrec*);
bool do_helpop(char**, int, userrec*);