diff options
author | John Southworth <john.southworth@vyatta.com> | 2011-07-23 21:47:28 -0700 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2011-07-23 21:47:28 -0700 |
commit | 41b0d350f938b23ac42d1f9283c93dbd50ccd480 (patch) | |
tree | b10af1a7e739b7173db35e641127371411328001 /src | |
parent | 83d5a21b5a158bed1d479362366f181efb582ff5 (diff) | |
download | vyatta-cfg-41b0d350f938b23ac42d1f9283c93dbd50ccd480.tar.gz vyatta-cfg-41b0d350f938b23ac42d1f9283c93dbd50ccd480.zip |
Oops, should have been false by default.
Diffstat (limited to 'src')
-rw-r--r-- | src/cstore/cstore.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cstore/cstore.hpp b/src/cstore/cstore.hpp index 228a6c3..69da796 100644 --- a/src/cstore/cstore.hpp +++ b/src/cstore/cstore.hpp @@ -339,7 +339,7 @@ private: virtual void pop_cfg_path() = 0; virtual void pop_cfg_path(string& last) = 0; virtual void append_cfg_path(const Cpath& path_comps) = 0; - virtual void reset_paths(bool to_root = true) = 0; + virtual void reset_paths(bool to_root = false) = 0; virtual auto_ptr<SavePaths> create_save_paths() = 0; virtual bool cfg_path_at_root() = 0; virtual bool tmpl_path_at_root() = 0; |