summary refs log tree commit diff stats
path: root/src/common/identd.c
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2014-12-28 13:38:47 -0500
committerTingPing <tingping@tingping.se>2014-12-28 22:29:06 -0500
commit1b2bee37e43baca9b0ec58061561fdb60c31cef8 (patch)
tree7caf7da8be07701c2c1147c14a75149e5bb48575 /src/common/identd.c
parent9cb73f839ffddb1479f0ee1c8a89acebafd31045 (diff)
Remove option to disable ipv6
It has been default for a while, is the only tested option,
and will only get more common.
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)
 	{