BUG/MINOR: args: add missing entry for ARGT_MAP in arg_type_names

This type is currently not used in an argument so it's harmles. But
better correctly fill the name.
This commit is contained in:
Willy Tarreau 2015-01-19 18:58:20 +01:00
parent 324f07f6dd
commit 53c250e165

View File

@ -33,6 +33,7 @@ static const char *arg_type_names[ARGT_NBTYPES] = {
[ARGT_TAB] = "table",
[ARGT_SRV] = "server",
[ARGT_USR] = "user list",
[ARGT_MAP] = "map",
/* Unassigned types must never happen. Better crash during parsing if they do. */
};