| # | Line 35 | Line 35 | |
|---|---|---|
| 35 | #include "s_serv.h" | |
| 36 | #include "send.h" | |
| 37 | #include "irc_string.h" | |
| 38 | – | #include "sprintf_irc.h" |
| 38 | #include "parse.h" | |
| 39 | #include "modules.h" | |
| 40 | ||
| # | Line 317 | Line 316 | whois_person(struct Client *source_p, st | |
| 316 | t = buf + mlen; | |
| 317 | } | |
| 318 | ||
| 319 | < | tlen = ircsprintf(t, "%s%s ", get_member_status(ms, 1), chptr->chname); |
| 319 | > | tlen = sprintf(t, "%s%s ", get_member_status(ms, 1), chptr->chname); |
| 320 | t += tlen; | |
| 321 | cur_len += tlen; | |
| 322 | reply_to_send = 1; | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |