# | Line 27 | Line 27 | |
---|---|---|
27 | #include "stdinc.h" | |
28 | #include "client.h" | |
29 | #include "irc_string.h" | |
30 | – | #include "sprintf_irc.h" |
30 | #include "ircd.h" | |
31 | #include "list.h" | |
32 | #include "numeric.h" | |
# | Line 69 | Line 68 | list_accepts(struct Client *source_p) | |
68 | t = nicks; | |
69 | } | |
70 | ||
71 | < | t += ircsprintf(t, "%s!%s@%s ", |
72 | < | accept_p->nickptr, |
73 | < | accept_p->userptr, accept_p->hostptr); |
71 | > | t += sprintf(t, "%s!%s@%s ", |
72 | > | accept_p->nickptr, |
73 | > | accept_p->userptr, accept_p->hostptr); |
74 | } | |
75 | ||
76 | if (nicks[0] != '\0') |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |