aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2012-04-22 14:56:03 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2012-04-22 14:56:03 -0700
commitef758662c595ca866ca7abe320452d785373314b (patch)
treeda3a6e5adc51ba5b1607b48ea22dc10b87ceef75 /src/util.h
parent457661f6400030f5979564462e8c625840cc5e58 (diff)
parentf4203de3021ca67f065d163b332e9814aee842d8 (diff)
downloadbitcoin-ef758662c595ca866ca7abe320452d785373314b.tar.xz
Merge pull request #1133 from sipa/abspath
Make GetDataDir return absolute paths
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h2
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();