]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Fixed a warning message of the compiler when not using IDENT lookups.
authorAlexander Barton <alex@barton.de>
Tue, 11 May 2004 00:53:14 +0000 (00:53 +0000)
committerAlexander Barton <alex@barton.de>
Tue, 11 May 2004 00:53:14 +0000 (00:53 +0000)
src/ngircd/conn.c

index c1e21fb2c194a381a51bd1a9e24df193b6e11111..b2ad9a257195b8b580eda94de8a8f13b9e4a8a33 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: conn.c,v 1.135 2004/05/11 00:01:11 alex Exp $";
+static char UNUSED id[] = "$Id: conn.c,v 1.136 2004/05/11 00:53:14 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -1647,7 +1647,9 @@ Read_Resolver_Result( INT r_fd )
 
        /* If the result string is incomplete, return to main loop and
         * wait until we can read in more bytes. */
+#ifdef IDENTAUTH
 try_resolve:
+#endif
        ptr = strchr( s->buffer, '\n' );
        if( ! ptr ) return;
        *ptr = '\0';