diff options
author | Michael Larson <slioch@eng-140.vyatta.com> | 2008-07-07 12:05:27 -0700 |
---|---|---|
committer | Michael Larson <slioch@eng-140.vyatta.com> | 2008-07-07 12:05:27 -0700 |
commit | 93a148a78b577ced2cfaebdbe1659e3ecc58c4aa (patch) | |
tree | bb86657c97b35bd397e51fbf48ebd7dc48721cfc /src/cli_val.h | |
parent | 797bf065bf8aa04cf857ad3bb53b79d48a639d88 (diff) | |
download | vyatta-cfg-93a148a78b577ced2cfaebdbe1659e3ecc58c4aa.tar.gz vyatta-cfg-93a148a78b577ced2cfaebdbe1659e3ecc58c4aa.zip |
fix for bug 3216. added no escape option to push path for environmental path variable. note this is appied to all c code access to the
edit env variable.
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 56f6cee..c9d59a6 100644 --- a/src/cli_val.h +++ b/src/cli_val.h @@ -153,6 +153,7 @@ extern void cli_val_done(void); extern void init_path(vtw_path *path, const char *root); extern void pop_path(vtw_path *path); extern void push_path(vtw_path *path, char *segm); +extern void push_path_no_escape(vtw_path *path, char *segm); extern void free_def(vtw_def *defp); extern void free_sorted(vtw_sorted *sortp); extern void *my_malloc(size_t size, const char *name); |