2001-10-30 11:01 GMT Dave Pearson <davep@davep.org>

* source/rtl/filesys.c
     * Fixed the Un*x oriented code in hb_fsMkDir so that it sets
       S_IXUSR as well as S_IWUSR and S_IRUSR when making the directory.
       Without it the directory can't be entered or used.
This commit is contained in:
Dave Pearson
2001-10-30 11:05:24 +00:00
parent 6aae98c66e
commit 280a2c533d
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2001-10-30 11:01 GMT Dave Pearson <davep@davep.org>
* source/rtl/filesys.c
* Fixed the Un*x oriented code in hb_fsMkDir so that it sets
S_IXUSR as well as S_IWUSR and S_IRUSR when making the directory.
Without it the directory can't be entered or used.
2001-10-29 14:14 GMT+1 Maurilio Longo <maurilio.longo@libero.it>
* contrib/mysql/readme.txt
* updated

View File

@@ -1246,7 +1246,7 @@ BOOL hb_fsMkDir( BYTE * pDirname )
errno = 0;
#if !defined(__WATCOMC__) && !defined(__BORLANDC__) && !defined(__IBMCPP__) && !defined(__MINGW32__)
iResult = mkdir( ( char * ) pDirname, S_IWUSR | S_IRUSR );
iResult = mkdir( ( char * ) pDirname, S_IWUSR | S_IRUSR | S_IXUSR );
#else
iResult = mkdir( ( char * ) pDirname );
#endif