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_objects.c | |
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_objects.c')
-rw-r--r-- | src/cli_objects.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli_objects.c b/src/cli_objects.c index 8f0f6fe..8685c6a 100644 --- a/src/cli_objects.c +++ b/src/cli_objects.c @@ -243,7 +243,7 @@ void init_edit() slashp = strchr(scanp, '/'); if (slashp) *slashp = 0; - push_path(&m_path, scanp); + push_path_no_escape(&m_path, scanp); if (slashp) { *slashp = '/'; scanp = slashp+1; |