summaryrefslogtreecommitdiff
path: root/epan/filesystem.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/filesystem.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/filesystem.c')
-rw-r--r--epan/filesystem.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/filesystem.c b/epan/filesystem.c
index ea41a10eda..761d17013a 100644
--- a/epan/filesystem.c
+++ b/epan/filesystem.c
@@ -771,7 +771,7 @@ get_wspython_dir(void)
}
-#if defined(HAVE_PLUGINS) || defined(HAVE_LUA_5_1)
+#if defined(HAVE_PLUGINS) || defined(HAVE_LUA)
/*
* Find the directory where the plugins are stored.
*
@@ -850,7 +850,7 @@ init_plugin_dir(void)
}
#endif
}
-#endif /* HAVE_PLUGINS || HAVE_LUA_5_1 */
+#endif /* HAVE_PLUGINS || HAVE_LUA */
/*
* Get the directory in which the plugins are stored.
@@ -858,7 +858,7 @@ init_plugin_dir(void)
const char *
get_plugin_dir(void)
{
-#if defined(HAVE_PLUGINS) || defined(HAVE_LUA_5_1)
+#if defined(HAVE_PLUGINS) || defined(HAVE_LUA)
if (!plugin_dir) init_plugin_dir();
return plugin_dir;
#else