summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2016-08-09 18:29:00 +0200
committerPascal Quantin <pascal.quantin@gmail.com>2016-08-09 19:00:12 +0000
commit80af5edbfec14978c65e9aabefd427b41ca8ccd1 (patch)
treecf56db0f89ff5090c837c9f9c265f06e15c20d4f
parente53ec249ad17a2a1f223e13a46fef086d766b1d0 (diff)
downloadwireshark-80af5edbfec14978c65e9aabefd427b41ca8ccd1.tar.gz
Display Lua release version in about dialog
It allows to have more info on the version used (for ex 5.2.4 instead of 5.2) Change-Id: I24a5b83f0a7a72fbb131e9ddc3e735ffea689ee6 Reviewed-on: https://code.wireshark.org/review/16977 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
-rw-r--r--epan/epan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/epan.c b/epan/epan.c
index c40ee9a08d..0cd3038134 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -520,7 +520,7 @@ epan_get_compiled_version_info(GString *str)
g_string_append(str, ", ");
#ifdef HAVE_LUA
g_string_append(str, "with ");
- g_string_append(str, LUA_VERSION);
+ g_string_append(str, LUA_RELEASE);
#else
g_string_append(str, "without Lua");
#endif /* HAVE_LUA */