0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-28 19:58:53 +02:00

Fix an off by one error with zipstats processing

from ircd-ratbox (androsyn)
This commit is contained in:
Jilles Tjoelker 2009-02-07 23:26:05 +01:00
parent 2d042188c7
commit 4f7a1feeda

View file

@ -336,7 +336,7 @@ ssl_process_zipstats(ssl_ctl_t * ctl, ssl_ctl_buf_t * ctl_buf)
struct Client *server;
struct ZipStats *zips;
int parc;
char *parv[6];
char *parv[7];
parc = rb_string_to_array(ctl_buf->buf, parv, 6);
server = find_server(NULL, parv[1]);
if(server == NULL || server->localClient == NULL || !IsCapable(server, CAP_ZIP))