aboutsummaryrefslogtreecommitdiff
path: root/src/lfs.c
diff options
context:
space:
mode:
authorcarregal <carregal>2008-05-07 19:06:37 +0000
committercarregal <carregal>2008-05-07 19:06:37 +0000
commitd4bfd537a8c4c14c3c1790ece17faa3eb639e7c2 (patch)
tree954e4adb5478d2d96fb8c482a883ff0c920e50d1 /src/lfs.c
parentd7a5679fb8dac1da8563b8e5b1d759e08dab3b32 (diff)
downloadluafilesystem-d4bfd537a8c4c14c3c1790ece17faa3eb639e7c2.tar.gz
luafilesystem-d4bfd537a8c4c14c3c1790ece17faa3eb639e7c2.tar.bz2
luafilesystem-d4bfd537a8c4c14c3c1790ece17faa3eb639e7c2.zip
Packaging version 1.4.1
Diffstat (limited to 'src/lfs.c')
-rw-r--r--src/lfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lfs.c b/src/lfs.c
index eef7226..f465082 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -16,7 +16,7 @@
16** lfs.touch (filepath [, atime [, mtime]]) 16** lfs.touch (filepath [, atime [, mtime]])
17** lfs.unlock (fh) 17** lfs.unlock (fh)
18** 18**
19** $Id: lfs.c,v 1.52 2008/04/24 17:27:18 mascarenhas Exp $ 19** $Id: lfs.c,v 1.53 2008/05/07 19:06:37 carregal Exp $
20*/ 20*/
21 21
22#define _LARGEFILE64_SOURCE 22#define _LARGEFILE64_SOURCE
@@ -656,7 +656,7 @@ static void set_info (lua_State *L) {
656 lua_pushliteral (L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution"); 656 lua_pushliteral (L, "LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution");
657 lua_settable (L, -3); 657 lua_settable (L, -3);
658 lua_pushliteral (L, "_VERSION"); 658 lua_pushliteral (L, "_VERSION");
659 lua_pushliteral (L, "LuaFileSystem 1.4.0"); 659 lua_pushliteral (L, "LuaFileSystem 1.4.1");
660 lua_settable (L, -3); 660 lua_settable (L, -3);
661} 661}
662 662