diff options
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 | ||
