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
.
This commit is contained in:
parent
f38a9035e5
commit
f5441d2170
|
@ -1366,7 +1366,7 @@ Count_Connections(ng_ipaddr_t *a)
|
||||||
* @returns Accepted socket descriptor or -1 on error.
|
* @returns Accepted socket descriptor or -1 on error.
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
New_Connection(int Sock, bool IsSSL)
|
New_Connection(int Sock, UNUSED bool IsSSL)
|
||||||
{
|
{
|
||||||
#ifdef TCPWRAP
|
#ifdef TCPWRAP
|
||||||
struct request_info req;
|
struct request_info req;
|
||||||
|
|
Loading…
Reference in New Issue