diff options
author | Michael Larson <mike@vyatta.com> | 2010-12-07 23:12:37 -0800 |
---|---|---|
committer | Michael Larson <mike@vyatta.com> | 2010-12-07 23:12:37 -0800 |
commit | e8f44ce0ef28d56b49bce317392589557a1086ad (patch) | |
tree | 5fd8ca64df50222888a86cd6b497f43770424a6d /lib/Vyatta | |
parent | aaa27225061025e12c50cbff5521dfbb27265f97 (diff) | |
download | vyatta-cfg-e8f44ce0ef28d56b49bce317392589557a1086ad.tar.gz vyatta-cfg-e8f44ce0ef28d56b49bce317392589557a1086ad.zip |
Allow _errloc_ to be place on any line in output, not restricted to first line.
Diffstat (limited to 'lib/Vyatta')
-rwxr-xr-x | lib/Vyatta/Config.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Vyatta/Config.pm b/lib/Vyatta/Config.pm index e66c317..69ed34b 100755 --- a/lib/Vyatta/Config.pm +++ b/lib/Vyatta/Config.pm @@ -694,7 +694,7 @@ sub compareValueLists { sub outputError { my ($location,$msg) = @_; print STDERR "_errloc_:[" . join(" ",@{$location}) . "]\n"; - print STDERR $msg . "\n"; + print STDERR $msg . "\n\n"; } ############################################################ |