]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: server: code alignement.
authorFrédéric Lécaille <flecaille@haproxy.com>
Fri, 10 Mar 2017 14:36:14 +0000 (15:36 +0100)
committerWilly Tarreau <w@1wt.eu>
Mon, 27 Mar 2017 12:36:11 +0000 (14:36 +0200)
Code alignement.

src/server.c

index 796ff51b997beb5fc8f85a6f6731158b68d4255b..09f196bdfbffdbb29d451592eadb499e5c3ef959 100644 (file)
@@ -886,10 +886,10 @@ void srv_compute_all_admin_states(struct proxy *px)
  * not enabled.
  */
 static struct srv_kw_list srv_kws = { "ALL", { }, {
-       { "backup",       srv_parse_backup,       0,  1 }, /* Flag as backup server */
+       { "backup",              srv_parse_backup,              0,  1 }, /* Flag as backup server */
        { "check-send-proxy",    srv_parse_check_send_proxy,    0,  1 }, /* enable PROXY protocol for health checks */
-       { "id",           srv_parse_id,           1,  0 }, /* set id# of server */
-       { "no-backup",    srv_parse_no_backup,    0,  1 }, /* Flag as non-backup server */
+       { "id",                  srv_parse_id,                  1,  0 }, /* set id# of server */
+       { "no-backup",           srv_parse_no_backup,           0,  1 }, /* Flag as non-backup server */
        { "no-check-send-proxy", srv_parse_no_check_send_proxy, 0,  1 }, /* disable PROXY protol for health checks */
        { NULL, NULL, 0 },
 }};