Merge pull request #112 from ProgVal/trailing-space

Remove trailing space in CAP ACK.
This commit is contained in:
William Pitcock 2015-12-28 11:14:37 -06:00
commit fb01429969

View file

@ -426,9 +426,11 @@ cap_req(struct Client *source_p, const char *arg)
} }
strcat(pbuf[i], cap->name); strcat(pbuf[i], cap->name);
if (!finished) {
strcat(pbuf[i], " "); strcat(pbuf[i], " ");
plen += (cap->namelen + 1); plen += (cap->namelen + 1);
} }
}
if(!finished) if(!finished)
{ {