mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
ensure boost::filesystem::path is created with native option
git-svn-id: http://encfs.googlecode.com/svn/trunk@21 db9cf616-1c43-0410-9cb8-a902689de0d6
This commit is contained in:
parent
7729483e57
commit
8d1d3ef74a
@ -318,7 +318,9 @@ bool readV6Config( const char *configFile, EncFSConfig *config,
|
||||
{
|
||||
(void)info;
|
||||
|
||||
fs::ifstream st(configFile);
|
||||
fs::path fsPath( configFile, fs::native );
|
||||
fs::ifstream st( fsPath );
|
||||
|
||||
if(st.is_open())
|
||||
{
|
||||
try
|
||||
@ -468,7 +470,9 @@ bool saveConfig( ConfigType type, const string &rootDir,
|
||||
|
||||
bool writeV6Config( const char *configFile, EncFSConfig *config )
|
||||
{
|
||||
fs::ofstream st( configFile );
|
||||
fs::path fsPath( configFile, fs::native );
|
||||
fs::ofstream st( fsPath );
|
||||
|
||||
if(!st.is_open())
|
||||
return false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user