diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-22 14:56:03 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-22 14:56:03 -0700 |
commit | ef758662c595ca866ca7abe320452d785373314b (patch) | |
tree | da3a6e5adc51ba5b1607b48ea22dc10b87ceef75 /src/util.h | |
parent | 457661f6400030f5979564462e8c625840cc5e58 (diff) | |
parent | f4203de3021ca67f065d163b332e9814aee842d8 (diff) |
Merge pull request #1133 from sipa/abspath
Make GetDataDir return absolute paths
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h index fe8ca60b47..9035b773f1 100644 --- a/src/util.h +++ b/src/util.h @@ -162,7 +162,7 @@ const boost::filesystem::path &GetDataDir(bool fNetSpecific = true); boost::filesystem::path GetConfigFile(); boost::filesystem::path GetPidFile(); void CreatePidFile(const boost::filesystem::path &path, pid_t pid); -bool ReadConfigFile(std::map<std::string, std::string>& mapSettingsRet, std::map<std::string, std::vector<std::string> >& mapMultiSettingsRet); +void ReadConfigFile(std::map<std::string, std::string>& mapSettingsRet, std::map<std::string, std::vector<std::string> >& mapMultiSettingsRet); bool GetStartOnSystemStartup(); bool SetStartOnSystemStartup(bool fAutoStart); void ShrinkDebugFile(); |