mirror of
https://github.com/lunarmodules/luafilesystem.git
synced 2026-07-24 20:33:06 +00:00
Correcao no valor de retorno da mkdir.
This commit is contained in:
@@ -9,7 +9,7 @@
|
|||||||
** lfs.lock (fh, mode)
|
** lfs.lock (fh, mode)
|
||||||
** lfs.unlock (fh)
|
** lfs.unlock (fh)
|
||||||
**
|
**
|
||||||
** $Id: lfs.c,v 1.6 2004/10/27 18:04:50 tomas Exp $
|
** $Id: lfs.c,v 1.7 2004/11/01 08:57:56 tomas Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
@@ -233,7 +233,7 @@ static int make_dir (lua_State *L) {
|
|||||||
fail = mkdir (path, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP |
|
fail = mkdir (path, S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP |
|
||||||
S_IWGRP | S_IXGRP | S_IROTH | S_IXOTH );
|
S_IWGRP | S_IXGRP | S_IROTH | S_IXOTH );
|
||||||
#endif
|
#endif
|
||||||
lua_pushboolean (L, fail);
|
lua_pushboolean (L, !fail);
|
||||||
umask (oldmask);
|
umask (oldmask);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user