* The displayed proxy name was wrong when dumping upon SIGHUP.
diff --git a/haproxy.c b/haproxy.c
index 79d2185..67dce3d 100644
--- a/haproxy.c
+++ b/haproxy.c
@@ -5991,8 +5991,8 @@
 	}
 
 	if (find_server(p) == NULL) {
-	    Warning("SIGHUP: Proxy %s has no server available !\n", p);
-	    send_log(p, LOG_NOTICE, "SIGHUP: Proxy %s has no server available !\n", p);
+	    Warning("SIGHUP: Proxy %s has no server available !\n", p->id);
+	    send_log(p, LOG_NOTICE, "SIGHUP: Proxy %s has no server available !\n", p->id);
 	}
 
 	p = p->next;