From e9d56797ac7d6895fa9bc9653ba72b8cafc1193f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Fri, 6 Jan 2017 02:05:24 +0100 Subject: [PATCH] Change permissions of created folder to 755 --- src/driver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver.cpp b/src/driver.cpp index 1a2607e..b42c7f8 100644 --- a/src/driver.cpp +++ b/src/driver.cpp @@ -44,7 +44,7 @@ namespace pds { #if defined(_WIN32) status = _mkdir(m_outputdir.c_str()); #else - status = mkdir(m_outputdir.c_str(), 0777); + status = mkdir(m_outputdir.c_str(), 0755); #endif if(status !=0 && errno != EEXIST){ throw DriverException("The folder " + m_outputdir + " does not exist and we're unable to create it.");