aother try to fix createDirectories

This commit is contained in:
Jan Kaluza 2013-01-17 09:19:07 +01:00
parent 9f0f649c96
commit 2fda71965d
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ namespace Transport {
namespace Util {
void createDirectories(Transport::Config *config, const boost::filesystem::path& ph);
void createDirectories(Transport::Config *config, boost::filesystem::path ph);
void removeEverythingOlderThan(const std::vector<std::string> &dirs, time_t t);

View file

@ -49,7 +49,7 @@ namespace Transport {
namespace Util {
void createDirectories(Transport::Config *config, const boost::filesystem::path& ph) {
void createDirectories(Transport::Config *config, path ph) {
if (ph.empty() || exists(ph)) {
return;
}