diff options
Diffstat (limited to 'libs')
-rw-r--r-- | libs/fastindex/src/fastindex.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libs/fastindex/src/fastindex.c b/libs/fastindex/src/fastindex.c index ab78c0935..c9c64bf75 100644 --- a/libs/fastindex/src/fastindex.c +++ b/libs/fastindex/src/fastindex.c @@ -32,8 +32,7 @@ #include <lauxlib.h> #include "list.h" -#define MODNAME "fastindex" -#define PATTERN "/*.lua" +#define MODNAME "luci.fastindex" #define DEFAULT_BUFLEN 1024 //#define DEBUG 1 @@ -373,7 +372,7 @@ static const luaL_Reg fastindex[] = { }; int -luaopen_fastindex(lua_State *L) +luaopen_luci_fastindex(lua_State *L) { luaL_register(L, MODNAME, fastindex); return 0; |