diff options
author | tuler <tuler> | 2004-11-10 15:30:00 +0000 |
---|---|---|
committer | tuler <tuler> | 2004-11-10 15:30:00 +0000 |
commit | 3234fcd2da7557f96bc2e92d130b33c7ee5c9735 (patch) | |
tree | f001a424d0d77d31bde8e13fabf1f398a3e26e0b /src | |
parent | 19fe539ed192975bebe76cdb4a29e39d05006829 (diff) | |
download | luafilesystem-3234fcd2da7557f96bc2e92d130b33c7ee5c9735.tar.gz luafilesystem-3234fcd2da7557f96bc2e92d130b33c7ee5c9735.tar.bz2 luafilesystem-3234fcd2da7557f96bc2e92d130b33c7ee5c9735.zip |
versao beta, e nao alfa
Diffstat (limited to 'src')
-rw-r--r-- | src/lfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -9,7 +9,7 @@ | |||
9 | ** lfs.lock (fh, mode) | 9 | ** lfs.lock (fh, mode) |
10 | ** lfs.unlock (fh) | 10 | ** lfs.unlock (fh) |
11 | ** | 11 | ** |
12 | ** $Id: lfs.c,v 1.12 2004/11/05 10:54:28 tomas Exp $ | 12 | ** $Id: lfs.c,v 1.13 2004/11/10 15:30:53 tuler Exp $ |
13 | */ | 13 | */ |
14 | 14 | ||
15 | #include <errno.h> | 15 | #include <errno.h> |
@@ -350,7 +350,7 @@ static int dir_create_meta (lua_State *L) { | |||
350 | #define S_ISLNK(mode) (0) | 350 | #define S_ISLNK(mode) (0) |
351 | #define S_ISSOCK(mode) (0) | 351 | #define S_ISSOCK(mode) (0) |
352 | #define S_ISFIFO(mode) (0) | 352 | #define S_ISFIFO(mode) (0) |
353 | #define S_ISCHR(mode) (0) | 353 | #define S_ISCHR(mode) (mode&_S_IFCHR) |
354 | #define S_ISBLK(mode) (0) | 354 | #define S_ISBLK(mode) (0) |
355 | #endif | 355 | #endif |
356 | /* | 356 | /* |
@@ -466,7 +466,7 @@ static void set_info (lua_State *L) { | |||
466 | lua_pushliteral (L, "LuaFileSystem"); | 466 | lua_pushliteral (L, "LuaFileSystem"); |
467 | lua_settable (L, -3); | 467 | lua_settable (L, -3); |
468 | lua_pushliteral (L, "_VERSION"); | 468 | lua_pushliteral (L, "_VERSION"); |
469 | lua_pushliteral (L, "1.0a"); | 469 | lua_pushliteral (L, "1.0b"); |
470 | lua_settable (L, -3); | 470 | lua_settable (L, -3); |
471 | } | 471 | } |
472 | 472 | ||