MINOR: init: server state loaded from file

With this patch, HAProxy reads the content of server state file and
update state of servers accordingly.
diff --git a/src/haproxy.c b/src/haproxy.c
index 681109d..465bb6a 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -800,6 +800,9 @@
 		exit(2);
 	}
 
+	/* Apply server states */
+	apply_server_state();
+
 	global_listener_queue_task = task_new();
 	if (!global_listener_queue_task) {
 		Alert("Out of memory when initializing global task\n");