1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 03:16:37 +02:00

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
This commit is contained in:
Robin Burchell w00t@inspircd.org
2008-09-30 18:45:13 +00:00
parent 1efa832f42
commit 4f8faa2dae
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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);
+1 -1
View File
@@ -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);