From 6238196dac6cab9dae0b4d01190a7fad307d5a93 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sun, 16 Mar 2014 22:28:37 +0100 Subject: [PATCH] Don't define SSL_Want{Read|Write}() when SSL is disabled Not even call the "dummy" functions. --- src/ngircd/conn.c | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 6056355f..fad34357 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -809,16 +809,6 @@ SSL_WantWrite(const CONNECTION *c) return false; } -#else - -static inline bool -SSL_WantRead(UNUSED const CONNECTION *c) -{ return false; } - -static inline bool -SSL_WantWrite(UNUSED const CONNECTION *c) -{ return false; } - #endif @@ -881,8 +871,10 @@ Conn_Handler(void) if (wdatalen > 0) #endif { +#ifdef SSL_SUPPORT if (SSL_WantRead(&My_Connections[i])) continue; +#endif io_event_add(My_Connections[i].sock, IO_WANTWRITE); } -- 2.39.2