aother try to fix createDirectories
This commit is contained in:
parent
9f0f649c96
commit
2fda71965d
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue