summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:13 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:13 +0000
commit4f8faa2dae4a4dd18ce16b3fe5d23bfefd44f9d4 (patch)
treecae25ba7d02701270a731f6cec8af8a737402823 /src
parent1efa832f4273123fdac598eb6617447204feec90 (diff)
Fix linker errors due to missing symbols at run-time.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1277 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r--src/protocol/bahamut.c2
-rw-r--r--src/protocol/charybdis.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c
index d2e4b666a..5caca909b 100644
--- a/src/protocol/bahamut.c
+++ b/src/protocol/bahamut.c
@@ -705,7 +705,7 @@ void BahamutIRCdProto::cmd_unszline(const char *mask)
}
/* SZLINE */
-void bahamut_cmd_szline(const char *mask, const char *reason, const char *whom)
+void BahamutIRCdProto::cmd_szline(const char *mask, const char *reason, const char *whom)
{
/* this will likely fail so its only here for legacy */
send_cmd(NULL, "SZLINE %s :%s", mask, reason);
diff --git a/src/protocol/charybdis.c b/src/protocol/charybdis.c
index 6ee8b8793..2593b6016 100644
--- a/src/protocol/charybdis.c
+++ b/src/protocol/charybdis.c
@@ -459,7 +459,7 @@ void CharybdisProto::cmd_message(const char *source, const char *dest, const cha
else cmd_notice(source, dest, buf);
}
-void charybdis_cmd_notice2(const char *source, const char *dest, const char *msg)
+void CharybdisProto::cmd_notice(const char *source, const char *dest, const char *msg)
{
Uid *ud = find_uid(source);
User *u = finduser(dest);