CLEANUP: config: set the maxaccept value for peers listeners earlier

Since we introduced bind_conf in peers, we can set maxaccept in a cleaner
way at the proper time, let's do this to make the code more readable.
diff --git a/src/cfgparse.c b/src/cfgparse.c
index 1cdda34..6b1034e 100644
--- a/src/cfgparse.c
+++ b/src/cfgparse.c
@@ -1757,6 +1757,7 @@
 				}
 
 				list_for_each_entry(l, &bind_conf->listeners, by_bind) {
+					l->maxaccept = 1;
 					l->maxconn = ((struct proxy *)curpeers->peers_fe)->maxconn;
 					l->backlog = ((struct proxy *)curpeers->peers_fe)->backlog;
 					l->timeout = &((struct proxy *)curpeers->peers_fe)->timeout.client;
@@ -7076,7 +7077,6 @@
 		while (*last) {
 			curpeers = *last;
 			if (curpeers->peers_fe) {
-				LIST_NEXT(&curpeers->peers_fe->conf.listeners, struct listener *, by_fe)->maxaccept = 1;
 				last = &curpeers->next;
 				continue;
 			}