diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-12-06 15:08:46 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-12-06 15:08:46 -0800 |
commit | eda92ac55a5076bcd8e8c807f263025ab5956574 (patch) | |
tree | 701a8dc1355fcc407c7eab65e79df3bf457bd0de | |
parent | 846c9163d5c79122abb3a3c9278fcb814615e7c6 (diff) | |
parent | 8c75a58cc447651c25b03aeedb6ad94a21ddd308 (diff) | |
download | vyatta-cfg-eda92ac55a5076bcd8e8c807f263025ab5956574.tar.gz vyatta-cfg-eda92ac55a5076bcd8e8c807f263025ab5956574.zip |
Merge branch 'mendocino' of suva.vyatta.com:/git/vyatta-cfg into mendocino
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | src/cli_new.c | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 3cdff2d..c39c4b3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +vyatta-cfg (0.18.55) unstable; urgency=low + + * handle case for non-commit client with latest error location + changes. + + -- Michael Larson <mike@vyatta.com> Mon, 06 Dec 2010 10:01:38 -0800 + vyatta-cfg (0.18.54) unstable; urgency=low * change boot-time config loading to use new implementation in diff --git a/src/cli_new.c b/src/cli_new.c index 821d21b..994280b 100644 --- a/src/cli_new.c +++ b/src/cli_new.c @@ -1276,6 +1276,9 @@ static boolean check_syn_func(vtw_node *cur,const char *prepend_msg,boolean form OUTPUT_USER("_errloc_:[%s]\n%s\n\n",prepend_msg,exe_string); } } + else { + OUTPUT_USER("%s\n",exe_string); + } } } } |