Changeset - 2fda71965df3
[Not reviewed]
0 2 0
Jan Kaluza - 13 years ago 2013-01-17 09:19:07
hanzz.k@gmail.com
aother try to fix createDirectories
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
include/transport/util.h
Show inline comments
 
@@ -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);
 

	
src/util.cpp
Show inline comments
 
@@ -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;
 
	}
0 comments (0 inline, 0 general)