Remove wrong #ifdef in Option_String()

This fixes the following error when compiling without zlib support:

  irc.c: In function ‘Option_String’:
  irc.c:487: error: ‘options’ undeclared (first use in this function)

Reported by "der_baer" on #ngircd.
This commit is contained in:
Alexander Barton 2013-11-01 19:12:35 +01:00
parent 2e93129877
commit 4ab688c5e8
1 changed files with 0 additions and 2 deletions

View File

@ -478,9 +478,7 @@ Option_String(UNUSED CONN_ID Idx)
#endif
{
static char option_txt[8];
#ifdef ZLIB
UINT16 options;
#endif
assert(Idx != NONE);