diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-03-31 14:06:08 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-03-31 14:06:08 +0000 |
commit | d9ffa61844e2e8f8dd1790c2810039f438b8a994 (patch) | |
tree | 93327d7c07d0a6303bd6fba48ebcd24f411f4c2f /modules/m_map.c | |
parent | 797277f9afab01fa2581f1865bfe7052d9d3e36c (diff) |
- Replaced all occurrences of ircsprintf with sprintf/snprintf
and killed sprintf_irc.(c|h)
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1793 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules/m_map.c')
-rw-r--r-- | modules/m_map.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/m_map.c b/modules/m_map.c index c1969c6..4d5c9ab 100644 --- a/modules/m_map.c +++ b/modules/m_map.c @@ -30,7 +30,6 @@ #include "conf.h" #include "ircd.h" #include "irc_string.h" -#include "sprintf_irc.h" #include "parse.h" @@ -51,13 +50,13 @@ dump_map(struct Client *client_p, const struct Client *root_p, *pbuf= '\0'; pb = pbuf; - l = ircsprintf(pb, "%s", root_p->name); + l = sprintf(pb, "%s", root_p->name); pb += l; len += l; if (root_p->id[0] != '\0') { - l = ircsprintf(pb, "[%s]", root_p->id); + l = sprintf(pb, "[%s]", root_p->id); pb += l; len += l; } |