diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-13 14:23:13 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-13 14:23:13 +0000 |
commit | 4310c712c39199f7f4b2f24d0d761c8a0e1d6194 (patch) | |
tree | 492b31af01b00b753efba70dbbe4047553d635bd | |
parent | 45b4074e0d76ba7f2fd67cf540d582e7f88af76b (diff) |
Fix memo sending causing crashes due to unresolvable symbol at runtime, mark ms_* as audited.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2034 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | TODO | 12 | ||||
-rw-r--r-- | src/memoserv.c | 2 |
2 files changed, 1 insertions, 13 deletions
@@ -46,18 +46,6 @@ Legend: [ ] HelpServ must die (1.9.1?) [-] Command parser cleanup: mod_current_buffer needs to go away and be replaced by a proper parser. Commands should then indicate how they want the buffer split. These all need reviewing, remove them from the list _AS YOU GO_. Talk t0 w00t or CBX if you don't know what this is for: - src/core/ms_cancel.c - src/core/ms_check.c - src/core/ms_del.c - src/core/ms_help.c - src/core/ms_info.c - src/core/ms_list.c - src/core/ms_read.c - src/core/ms_rsend.c - src/core/ms_sendall.c - src/core/ms_send.c - src/core/ms_set.c - src/core/ms_staff.c src/core/ns_access.c src/core/ns_alist.c src/core/ns_drop.c diff --git a/src/memoserv.c b/src/memoserv.c index 93aec75ac..2cdbc8e9d 100644 --- a/src/memoserv.c +++ b/src/memoserv.c @@ -193,7 +193,7 @@ MemoInfo *getmemoinfo(const char *name, int *ischan, int *isforbid) * 3 - reply to user and request read receipt * @return void */ -void memo_send(User * u, char *name, char *text, int z) +void memo_send(User * u, const char *name, const char *text, int z) { int ischan; int isforbid; |