1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-01-19 03:52:52 +00:00

Fix compiler warning in Option_String()

When compiling ngIRCd without support for SSL and without support for
ZLIB, gcc outputs the following warning:

  irc.c:493:9: warning: variable ‘options’ set but not used
    [-Wunused-but-set-variable]

Fix it by providing a dummy function in this case.
This commit is contained in:
Alexander Barton 2018-01-29 23:32:06 +01:00
parent 7207bef418
commit d9f81ac669

View File

@ -483,11 +483,8 @@ Help(CLIENT *Client, const char *Topic)
* @return Pointer to static (global) string buffer.
*/
static char *
#ifdef ZLIB
#if defined(SSL_SUPPORT) || defined(ZLIB)
Option_String(CONN_ID Idx)
#else
Option_String(UNUSED CONN_ID Idx)
#endif
{
static char option_txt[8];
UINT16 options;
@ -507,6 +504,11 @@ Option_String(UNUSED CONN_ID Idx)
#endif
return option_txt;
#else
Option_String(UNUSED CONN_ID Idx)
{
return "";
#endif
} /* Option_String */
/**