Merge pull request #112 from ProgVal/trailing-space
Remove trailing space in CAP ACK.
This commit is contained in:
commit
fb01429969
1 changed files with 4 additions and 2 deletions
|
@ -426,8 +426,10 @@ cap_req(struct Client *source_p, const char *arg)
|
||||||
}
|
}
|
||||||
|
|
||||||
strcat(pbuf[i], cap->name);
|
strcat(pbuf[i], cap->name);
|
||||||
strcat(pbuf[i], " ");
|
if (!finished) {
|
||||||
plen += (cap->namelen + 1);
|
strcat(pbuf[i], " ");
|
||||||
|
plen += (cap->namelen + 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!finished)
|
if(!finished)
|
||||||
|
|
Loading…
Reference in a new issue