diff options
author | John Southworth <john.southworth@vyatta.com> | 2011-07-23 21:47:28 -0700 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2011-08-04 13:56:38 -0500 |
commit | 947aa261cca7beb3641e2b74abbb49eb7d263c11 (patch) | |
tree | 804385822e4a79f46bb65cac03530b7544ab9ef3 | |
parent | b1b85b19d35871ca65058e23ee79706be99130af (diff) | |
download | vyatta-cfg-947aa261cca7beb3641e2b74abbb49eb7d263c11.tar.gz vyatta-cfg-947aa261cca7beb3641e2b74abbb49eb7d263c11.zip |
Oops, should have been false by default.
-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; |