aboutsummaryrefslogtreecommitdiffstats
path: root/include/commands/cmd_loadmodule.h
diff options
context:
space:
mode:
authorGravatar w00t2008-02-13 10:39:25 +0000
committerGravatar w00t2008-02-13 10:39:25 +0000
commit449bbb6e04f73685341fc22acb4b579794bd56ac (patch)
treecae19edfde7f61ab54da95d3e232a048b52f0a3a /include/commands/cmd_loadmodule.h
parentSupport \* in silence flags, do the same thing as a(ll) flag. (diff)
downloadinspircd++-449bbb6e04f73685341fc22acb4b579794bd56ac.tar.gz
inspircd++-449bbb6e04f73685341fc22acb4b579794bd56ac.tar.bz2
inspircd++-449bbb6e04f73685341fc22acb4b579794bd56ac.zip
Slight API tweak. Change Command to take char * instead of char in it's constructor, this avoids confusion/generates a compile error if someone mixes up flags with number of params, instead of working but not working as expected in a weird manner.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8918 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/commands/cmd_loadmodule.h')
-rw-r--r--include/commands/cmd_loadmodule.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/commands/cmd_loadmodule.h b/include/commands/cmd_loadmodule.h
index 9d5ad621b..14b843449 100644
--- a/include/commands/cmd_loadmodule.h
+++ b/include/commands/cmd_loadmodule.h
@@ -29,7 +29,7 @@ class CommandLoadmodule : public Command
public:
/** Constructor for loadmodule.
*/
- CommandLoadmodule (InspIRCd* Instance) : Command(Instance,"LOADMODULE",'o',1) { syntax = "<modulename>"; }
+ CommandLoadmodule (InspIRCd* Instance) : Command(Instance,"LOADMODULE","o",1) { syntax = "<modulename>"; }
/** Handle command.
* @param parameters The parameters to the comamnd
* @param pcnt The number of parameters passed to teh command