nsc: New enum ca_dump member CA_DUMP_ONLY

CA_DUMP_ONLY selectors are like CA_DUMP_NONE, except the xdump command
still has them.  This will permit adding selectors for conditional
selector and xdump command forward compatibility without also adding
them to configuration tables.

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2016-05-30 23:33:03 +02:00
parent dc58018cd7
commit c93405f10d
3 changed files with 7 additions and 1 deletions

View file

@ -201,6 +201,7 @@ enum ca_dump {
/* order is relevant */
CA_DUMP, /* xdump and xundump normally */
CA_DUMP_CONST, /* same, but value can't be changed */
CA_DUMP_ONLY, /* only in xdump command */
CA_DUMP_NONE /* do not xdump or xundump */
};