# | Line 180 | Line 180 | send_members(struct Client *client_p, st | |
---|---|---|
180 | /* space will be converted into CR, but we also need space for LF.. | |
181 | * That's why we use '- 1' here | |
182 | * -adx */ | |
183 | < | if (t + tlen - buf > sizeof(buf) - 1) |
183 | > | if (t + tlen - buf > IRCD_BUFSIZE - 1) |
184 | { | |
185 | *(t - 1) = '\0'; /* kill the space and terminate the string */ | |
186 | sendto_one(client_p, "%s", buf); |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |