diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:13 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:13 +0000 |
commit | 4f8faa2dae4a4dd18ce16b3fe5d23bfefd44f9d4 (patch) | |
tree | cae25ba7d02701270a731f6cec8af8a737402823 /src/protocol/charybdis.c | |
parent | 1efa832f4273123fdac598eb6617447204feec90 (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/protocol/charybdis.c')
-rw-r--r-- | src/protocol/charybdis.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |