summaryrefslogtreecommitdiff
path: root/src/plugins/db2sql.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-11-22 10:47:45 -0200
committershennetsind <ind@henn.et>2013-11-22 10:47:45 -0200
commita724476174cd691704a51f60e540513bae743432 (patch)
tree7d1935a7640e9e2c2594df931e450dfc55576f3f /src/plugins/db2sql.c
parent0ba8a5b1792225f736ef96603e2ceb40a90e38e4 (diff)
downloadhercules-a724476174cd691704a51f60e540513bae743432.tar.gz
hercules-a724476174cd691704a51f60e540513bae743432.tar.bz2
hercules-a724476174cd691704a51f60e540513bae743432.tar.xz
hercules-a724476174cd691704a51f60e540513bae743432.zip
Minor HPMi Sub Modifications
- HPMi->addCommand is now addAtcommand, dropped usage of ACMD_A() - HPMi->addScript is now addScriptCommand, dropped usage of BUILDIN_A() - HPMi->addCPCommand is now addCPCommand, dropped necessity of CPCMD_A() - HPMi->addPacket is now addPacket, 5th param (HPMi->pid) is now automatically filled by the macro, therefore param count drops to 4 (packetID,packetLength,packetFunction,packetIncomingPoint). There is no longer necessity to check for the availability of the commands, the macros will do it on their own and drop a warning about it upon failure. These changes won't affect pre-compiled plugins. Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/plugins/db2sql.c')
-rw-r--r--src/plugins/db2sql.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/db2sql.c b/src/plugins/db2sql.c
index 3c3981bdd..9161e0263 100644
--- a/src/plugins/db2sql.c
+++ b/src/plugins/db2sql.c
@@ -196,7 +196,7 @@ HPExport void server_preinit (void) {
addArg("--db2sql",false,db2sql_arg,NULL);
}
HPExport void plugin_init (void) {
- HPMi->addCPCommand("server:tools:db2sql",CPCMD_A(db2sql));
+ addCPCommand("server:tools:db2sql",db2sql);
}
HPExport void server_online (void) {
if( torun )