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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user