Module: ngircd.git Branch: master Commit: cfd0bddc3014e87dead4db72ef206c6f61ee12c1 URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=cfd0b...
Author: Alexander Barton alex@kfreebsd.barton.de Date: Mon Aug 6 01:35:56 2012 +0200
Fix compiler warning when not building with ZLIB support
This fixes:
irc.c: In function ‘Option_String’: irc.c:333:9: error: variable ‘options’ set but not used
---
src/ngircd/irc.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/ngircd/irc.c b/src/ngircd/irc.c index 9508ecc..efc34d4 100644 --- a/src/ngircd/irc.c +++ b/src/ngircd/irc.c @@ -327,12 +327,18 @@ IRC_HELP( CLIENT *Client, REQUEST *Req )
static char * -Option_String( CONN_ID Idx ) +#ifdef ZLIB +Option_String(CONN_ID Idx) +#else +Option_String(UNUSED CONN_ID Idx) +#endif { static char option_txt[8]; +#ifdef ZLIB UINT16 options;
options = Conn_Options(Idx); +#endif
strcpy(option_txt, "F"); /* No idea what this means, but the * original ircd sends it ... */