summaryrefslogtreecommitdiff
path: root/src/cli_val.h
diff options
context:
space:
mode:
authorMichael Larson <slioch@slioch.vyatta.com>2010-05-20 13:35:28 -0700
committerMichael Larson <slioch@slioch.vyatta.com>2010-05-20 13:35:28 -0700
commitb07232847311699084653bb2f7a6cf0956ef4835 (patch)
tree9f225b4402928c6d1d7324a375704d2330058404 /src/cli_val.h
parentc1b384a44a794f6f3ce97816247dda1555b92e37 (diff)
downloadvyatta-cfg-b07232847311699084653bb2f7a6cf0956ef4835.tar.gz
vyatta-cfg-b07232847311699084653bb2f7a6cf0956ef4835.zip
fix for bug 5618. needed to extend valstruct to maintain multiple types rather than using first type found in node.val file. also simplified type check.
Diffstat (limited to 'src/cli_val.h')
-rw-r--r--src/cli_val.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cli_val.h b/src/cli_val.h
index 728b307..00ed103 100644
--- a/src/cli_val.h
+++ b/src/cli_val.h
@@ -66,6 +66,7 @@ typedef struct {
char *val;
int cnt; /* >0 means multivalue */
char **vals; /* We might union with val */
+ vtw_type_e *val_types; /* used with vals and multitypes */
boolean free_me;
}valstruct;