fix permissions bug when creating directories,

need to put in user/group execute bit.
This commit is contained in:
Matt
2015-10-07 08:26:27 -06:00
parent 836aa1756d
commit a9410738ae

@ -24,7 +24,8 @@ mode_t getDirCreationFlags() {
s_setUmask = true;
umask ( 0 );
}
return S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH ;
return S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH |
S_IXUSR | S_IXGRP;
}
Conf::Conf ( ) {