summaryrefslogtreecommitdiff
path: root/epan/plugins.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-06-25 20:42:07 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-06-25 20:42:07 +0000
commite6e6d6217ba78d0936898815b87a514acca2e449 (patch)
treec5fb9e41f81d4e9501978141712babc952e62083 /epan/plugins.c
parent8eeebf73e0743192e9c395ea240f41dd08ab0670 (diff)
downloadwireshark-e6e6d6217ba78d0936898815b87a514acca2e449.tar.gz
From Tony Trinh:
Update Lua from 5.1 to 5.2 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7400 svn path=/trunk/; revision=43482
Diffstat (limited to 'epan/plugins.c')
-rw-r--r--epan/plugins.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/plugins.c b/epan/plugins.c
index 2e8e863fa2..3af1d80907 100644
--- a/epan/plugins.c
+++ b/epan/plugins.c
@@ -519,7 +519,7 @@ plugins_dump_all(void)
plugin *pt_plug;
const char *sep;
#endif
-#ifdef HAVE_LUA_5_1
+#ifdef HAVE_LUA
wslua_plugin *lua_plug;
#endif
@@ -552,7 +552,7 @@ plugins_dump_all(void)
}
#endif
-#ifdef HAVE_LUA_5_1
+#ifdef HAVE_LUA
for (lua_plug = wslua_plugin_list; lua_plug != NULL; lua_plug = lua_plug->next)
{
printf("%s\t%s\tlua script\t%s\n", lua_plug->name, lua_plug->version, lua_plug->filename);