File profitcoin-util.patch of Package profitcoin
--- src/util.cpp 2014-12-22 17:12:24.115217882 +0100
+++ util.cpp 2014-12-22 18:08:14.123590182 +0100
@@ -1030,7 +1030,7 @@
return pathRet / "ProfitCoin";
#else
// Unix
- return pathRet / ".ProfitCoin";
+ return pathRet / ".profitcoin";
#endif
#endif
}
@@ -1072,7 +1072,7 @@
boost::filesystem::path GetConfigFile()
{
- boost::filesystem::path pathConfigFile(GetArg("-conf", "ProfitCoin.conf"));
+ boost::filesystem::path pathConfigFile(GetArg("-conf", "profitcoin.conf"));
if (!pathConfigFile.is_complete()) pathConfigFile = GetDataDir(false) / pathConfigFile;
return pathConfigFile;
}
@@ -1103,7 +1103,7 @@
boost::filesystem::path GetPidFile()
{
- boost::filesystem::path pathPidFile(GetArg("-pid", "ProfitCoind.pid"));
+ boost::filesystem::path pathPidFile(GetArg("-pid", "profitcoind.pid"));
if (!pathPidFile.is_complete()) pathPidFile = GetDataDir() / pathPidFile;
return pathPidFile;
}