# | Line 297 | Line 297 | parse(struct Client *client_p, char *pbu | |
---|---|---|
297 | * Copy the prefix to 'sender' assuming it terminates | |
298 | * with SPACE (or NULL, which is an error, though). | |
299 | */ | |
300 | < | const char *sender = ++ch; |
300 | > | const char *const sender = ++ch; |
301 | ||
302 | if ((s = strchr(ch, ' '))) | |
303 | { | |
# | Line 646 | Line 646 | recurse_report_messages(struct Client *s | |
646 | void | |
647 | report_messages(struct Client *source_p) | |
648 | { | |
649 | < | const struct MessageTree *mtree = &msg_tree; |
649 | > | const struct MessageTree *const mtree = &msg_tree; |
650 | ||
651 | for (unsigned int i = 0; i < MAXPTRLEN; ++i) | |
652 | if (mtree->pointers[i]) |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |