about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2008-04-29 15:27:44 +0200
committerAlexander Barton <alex@barton.de>2008-04-29 15:27:44 +0200
commit4a81367dac3a34d3bad3035b78d40e960c0cca75 (patch)
tree302ccff11333658a3523e324ce2077fa5a68cf7f
parent8c425945a272cd497b056a92a870d07425429ff9 (diff)
downloadngircd-4a81367dac3a34d3bad3035b78d40e960c0cca75.tar.gz
ngircd-4a81367dac3a34d3bad3035b78d40e960c0cca75.zip
--configtest: fix missing whitespace at "ConnectIPv4" option.
-rw-r--r--src/ngircd/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c
index ad2baa9e..c5a621fe 100644
--- a/src/ngircd/conf.c
+++ b/src/ngircd/conf.c
@@ -218,7 +218,7 @@ Conf_Test( void )
 #ifdef WANT_IPV6
 	printf("  ListenIPv6 = %s\n", yesno_to_str(Conf_ListenIPv6));
 	printf("  ListenIPv4 = %s\n", yesno_to_str(Conf_ListenIPv4));
-	printf("  ConnectIPv4= %s\n", yesno_to_str(Conf_ConnectIPv6));
+	printf("  ConnectIPv4 = %s\n", yesno_to_str(Conf_ConnectIPv6));
 	printf("  ConnectIPv6 = %s\n", yesno_to_str(Conf_ConnectIPv4));
 #endif
 	printf( "  MaxConnections = %ld\n", Conf_MaxConnections);