diff options
author | Michael Larson <slioch@slioch.vyatta.com> | 2010-05-20 13:35:28 -0700 |
---|---|---|
committer | Michael Larson <slioch@slioch.vyatta.com> | 2010-05-20 13:35:28 -0700 |
commit | b07232847311699084653bb2f7a6cf0956ef4835 (patch) | |
tree | 9f225b4402928c6d1d7324a375704d2330058404 /src/cli_val.h | |
parent | c1b384a44a794f6f3ce97816247dda1555b92e37 (diff) | |
download | vyatta-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.h | 1 |
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; |