commit | 53c250e1656dda7c9fcece5b688f0f3a9a3ec068 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Jan 19 18:58:20 2015 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Wed Jan 21 16:06:53 2015 +0100 |
tree | 1a8a914ad1e2a97a688090c2b92cb24592733afe | |
parent | 324f07f6dddcf39d81bbb4e2f5c8445251dc8a95 [diff] |
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.
diff --git a/src/arg.c b/src/arg.c index edaeee7..f23ee02 100644 --- a/src/arg.c +++ b/src/arg.c
@@ -33,6 +33,7 @@ [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. */ };