summary refs log tree commit diff stats
path: root/src/common/identd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/identd.c')
-rw-r--r--src/common/identd.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/identd.c b/src/common/identd.c
index ae95df8d..053b33dd 100644
--- a/src/common/identd.c
+++ b/src/common/identd.c
@@ -25,9 +25,7 @@
 #include "text.h"
 
 static int identd_is_running = FALSE;
-#ifdef USE_IPV6
 static int identd_ipv6_is_running = FALSE;
-#endif
 
 static int
 identd (char *username)
@@ -104,7 +102,6 @@ identd (char *username)
 	return 0;
 }
 
-#ifdef USE_IPV6
 static int
 identd_ipv6 (char *username)
 {
@@ -182,7 +179,6 @@ identd_start (char *username)
 {
 	DWORD tid;
 
-#ifdef USE_IPV6
 	DWORD tidv6;
 	if (identd_ipv6_is_running == FALSE)
 	{
@@ -190,7 +186,6 @@ identd_start (char *username)
 		CloseHandle (CreateThread (NULL, 0, (LPTHREAD_START_ROUTINE) identd_ipv6,
 						 g_strdup (username), 0, &tidv6));
 	}
-#endif
 
 	if (identd_is_running == FALSE)
 	{