MINOR: checks: Use a name for the healthcheck status enum

The enum defining all healthcheck status (HCHK_STATUS_*) is now named.
This commit is contained in:
Christopher Faulet 2020-04-01 10:37:29 +02:00
parent 568415a51f
commit 1032059bd0

View File

@ -44,7 +44,7 @@ enum chk_result {
#define CHK_ST_PORT_MISS 0x0020 /* check can't be send because no port is configured to run it */
/* check status */
enum {
enum healthcheck_status {
HCHK_STATUS_UNKNOWN = 0, /* Unknown */
HCHK_STATUS_INI, /* Initializing */
HCHK_STATUS_START, /* Check started - SPECIAL STATUS */