BUG/MINOR: conf: Fix 'maxsslconn' statement error if built without OPENSSL.
diff --git a/src/cfgparse.c b/src/cfgparse.c
index 86bc15c..9d1a6fd 100644
--- a/src/cfgparse.c
+++ b/src/cfgparse.c
@@ -727,11 +727,9 @@
 		}
 		global.maxsslconn = atol(args[1]);
 #else
-		if (*(args[1]) == 0) {
-			Alert("parsing [%s:%d] : '%s' is not implemented.\n", file, linenum, args[0]);
-			err_code |= ERR_ALERT | ERR_FATAL;
-			goto out;
-		}
+		Alert("parsing [%s:%d] : '%s' is not implemented.\n", file, linenum, args[0]);
+		err_code |= ERR_ALERT | ERR_FATAL;
+		goto out;
 #endif
 	}
 	else if (!strcmp(args[0], "maxconnrate")) {