commit f5441d217068cdb4a34c27b2fde9ca59558e7a5b from: Alexander Barton date: Tue Sep 11 11:15:16 2012 UTC New_Connection(): mark "IsSSL" parameter as UNUSED This fixes the following warning message when building without SSL support: conn.c: In function "New_Connection": conn.c:1365: warning: unused parameter "IsSSL" Introduced by commit 01b62202. commit - f38a9035e5439cb395b2de6b9bdfa36102bfe80c commit + f5441d217068cdb4a34c27b2fde9ca59558e7a5b blob - 81a0f4507eed0fb79d470bf323452bd1a328dd58 blob + 6091ebe26a34a8096d2d62cf48e06b06c5dd321d --- src/ngircd/conn.c +++ src/ngircd/conn.c @@ -1366,7 +1366,7 @@ Count_Connections(ng_ipaddr_t *a) * @returns Accepted socket descriptor or -1 on error. */ static int -New_Connection(int Sock, bool IsSSL) +New_Connection(int Sock, UNUSED bool IsSSL) { #ifdef TCPWRAP struct request_info req;