Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keplerproject/luafilesystem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2022-07-26 18:40:59 +0300
committerHisham Muhammad <hisham@gobolinux.org>2022-07-26 18:40:59 +0300
commit912e06714fc276c15b4d5d1b42bd2b11edb8deff (patch)
treeb9ed0919d1019349f19170e1904a432a30eae728 /src
parente4eae33de5045e644c77fc3e1ae9b8373c82a1a2 (diff)
keplerproject -> lunarmodulesHEADmaster
Diffstat (limited to 'src')
-rw-r--r--src/lfs.c23
-rw-r--r--src/lfs.h7
2 files changed, 9 insertions, 21 deletions
diff --git a/src/lfs.c b/src/lfs.c
index fb5e825..e5e5ee4 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -1,23 +1,10 @@
/*
** LuaFileSystem
-** Copyright Kepler Project 2003 - 2020
-** (http://keplerproject.github.io/luafilesystem)
+** File system manipulation library
**
-** File system manipulation library.
-** This library offers these functions:
-** lfs.attributes (filepath [, attributename | attributetable])
-** lfs.chdir (path)
-** lfs.currentdir ()
-** lfs.dir (path)
-** lfs.link (old, new[, symlink])
-** lfs.lock (fh, mode)
-** lfs.lock_dir (path)
-** lfs.mkdir (path)
-** lfs.rmdir (path)
-** lfs.setmode (filepath, mode)
-** lfs.symlinkattributes (filepath [, attributename])
-** lfs.touch (filepath [, atime [, mtime]])
-** lfs.unlock (fh)
+** Copyright (C) 2003-2010 Kepler Project.
+** Copyright (C) 2010-2022 The LuaFileSystem authors.
+** (http://lunarmodules.github.io/luafilesystem)
*/
#ifndef LFS_DO_NOT_USE_LARGE_FILE
@@ -1141,8 +1128,6 @@ static int link_info(lua_State * L)
*/
static void set_info(lua_State * L)
{
- lua_pushliteral(L, "Copyright (C) 2003-2017 Kepler Project");
- lua_setfield(L, -2, "_COPYRIGHT");
lua_pushliteral(L,
"LuaFileSystem is a Lua library developed to complement "
"the set of functions related to file systems offered by "
diff --git a/src/lfs.h b/src/lfs.h
index 13b60a9..116b892 100644
--- a/src/lfs.h
+++ b/src/lfs.h
@@ -1,7 +1,10 @@
/*
** LuaFileSystem
-** Copyright Kepler Project 2003 - 2020
-** (http://keplerproject.github.io/luafilesystem)
+** File system manipulation library
+**
+** Copyright (C) 2003-2010 Kepler Project.
+** Copyright (C) 2010-2022 The LuaFileSystem authors.
+** (http://lunarmodules.github.io/luafilesystem)
*/
/* Define 'chdir' for systems that do not implement it */