diff options
author | Kim <kim.sidney@gmail.com> | 2017-10-25 22:59:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-25 22:59:24 +0200 |
commit | 995fab7f6ba0530e05c5ea4dc4ac4aee86b3412a (patch) | |
tree | 322ea36d4b7dc41e3b14a4bae2ff37e73177db65 | |
parent | 83d46a299f26f3c1f5f7c2f73d0e0b8d4d4d6475 (diff) | |
download | vyatta-cfg-995fab7f6ba0530e05c5ea4dc4ac4aee86b3412a.tar.gz vyatta-cfg-995fab7f6ba0530e05c5ea4dc4ac4aee86b3412a.zip |
fix compilation error
-rw-r--r-- | src/cstore/unionfs/cstore-unionfs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cstore/unionfs/cstore-unionfs.cpp b/src/cstore/unionfs/cstore-unionfs.cpp index b42e8c8..2f0042a 100644 --- a/src/cstore/unionfs/cstore-unionfs.cpp +++ b/src/cstore/unionfs/cstore-unionfs.cpp @@ -447,7 +447,7 @@ UnionfsCstore::setupSession() // remove old config session directories but only for the current user - if (directory_uid == current_uid && (directory_uid != 0 ) { + if (directory_uid == current_uid && directory_uid != 0 ) { string config_match = work_base.path_cstr() + std::string("/new_config_"); string current_path = directories[i].path_cstr(); |