| # | Line 640 | Line 640 | sendnick_TS(struct Client *client_p, str | |
|---|---|---|
| 640 | const char * | |
| 641 | show_capabilities(const struct Client *target_p) | |
| 642 | { | |
| 643 | < | static char msgbuf[IRCD_BUFSIZE] = "TS"; |
| 643 | > | static char msgbuf[IRCD_BUFSIZE] = ""; |
| 644 | const dlink_node *ptr = NULL; | |
| 645 | ||
| 646 | + | strlcpy(msgbuf, "TS", sizeof(msgbuf)); |
| 647 | + | |
| 648 | DLINK_FOREACH(ptr, cap_list.head) | |
| 649 | { | |
| 650 | const struct Capability *cap = ptr->data; | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |