diff options
author | Christian Pointner <equinox@helsinki.at> | 2014-03-20 21:40:29 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2014-03-20 21:40:29 (GMT) |
commit | 270ecd189fc229375871f3f2ef76934ca4d42a56 (patch) | |
tree | 65dbb517e2b951f2d51d0b2c9eb44dbd8c997c91 /client_list.c | |
parent | 16842a01fa7785f240677687a2212ed575b384e2 (diff) |
added heartbeat command
Diffstat (limited to 'client_list.c')
-rw-r--r-- | client_list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client_list.c b/client_list.c index 92f7b91..928c354 100644 --- a/client_list.c +++ b/client_list.c @@ -31,8 +31,8 @@ char* client_type_tostring(client_type_t type) { case MASTER: return "master"; case STANDBY: return "standby"; - case MASTER_HB: return "master_hb"; - case STANDBY_HB: return "standby_hb"; + case HB_MASTER: return "hb_master"; + case HB_STANDBY: return "hb_standby"; case DEFAULT: return "unspecified"; } return "<invalid>"; |