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:
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user