BUILD: ssl: fix typo causing a build failure in the multicert patch
authorWilly Tarreau <w@1wt.eu>
Mon, 20 Jun 2016 21:01:57 +0000 (23:01 +0200)
committerWilly Tarreau <w@1wt.eu>
Mon, 20 Jun 2016 21:02:46 +0000 (23:02 +0200)
commit24b892f32441369bf7b5b6c2c017ee7ff732f23b
treec603e45d706ca1bc6bd6b240f7ecfa31ff739f98
parent5e0e6e409b39097d706b6788f296f13a8d25ece6
BUILD: ssl: fix typo causing a build failure in the multicert patch

I just noticed that SSL wouldn't build anymore since this afternoon's patch :

src/ssl_sock.c: In function 'ssl_sock_load_multi_cert':
src/ssl_sock.c:1982:26: warning: left-hand operand of comma expression has no effect [-Wunused-value]
    for (i = 0; i < fcount, i++)
                          ^
src/ssl_sock.c:1982:31: error: expected ';' before ')' token
    for (i = 0; i < fcount, i++)
                               ^
Makefile:791: recipe for target 'src/ssl_sock.o' failed
make: *** [src/ssl_sock.o] Error 1
src/ssl_sock.c