Combine stats A output parameters (#35)
Every other use of RPL_STATSDEBUG follows the format: <letter> :<text> This case appeared to slip through because it's two-word argument is encoded in a single `->data` buffer.
This commit is contained in:
parent
0f8ec93849
commit
67ab06dd8a
1 changed files with 1 additions and 1 deletions
|
@ -288,7 +288,7 @@ stats_dns_servers (struct Client *source_p)
|
|||
|
||||
RB_DLINK_FOREACH(n, nameservers.head)
|
||||
{
|
||||
sendto_one_numeric(source_p, RPL_STATSDEBUG, "A %s", (char *)n->data);
|
||||
sendto_one_numeric(source_p, RPL_STATSDEBUG, "A :%s", (char *)n->data);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue