Lua is a proper name. Fix its capitalization.

This commit is contained in:
Gerald Combs 2021-11-10 15:51:29 -08:00 committed by Guy Harris
parent 139c04f40a
commit 87b84b7813
7 changed files with 9 additions and 9 deletions

View File

@ -2231,7 +2231,7 @@ foreach(_install_file ${INSTALL_FILES})
list(APPEND copy_data_files_depends "${_output_file}")
endforeach()
# Install LUA files in staging directory such that LUA can used when Wireshark
# Install Lua files in staging directory such that Lua can used when Wireshark
# is ran from the build directory. For install targets, see
# epan/wslua/CMakeLists.txt
if(LUA_FOUND AND ENABLE_LUA)

View File

@ -339,9 +339,9 @@ https://anonsvn.wireshark.org/wireshark-win32-libs/trunk/packages/[].
[[ChLibsLua]]
=== LUA (Optional)
=== Lua (Optional)
The LUA library is used to add scripting support to Wireshark.
The Lua library is used to add scripting support to Wireshark.
[[ChLibsUnixLua]]

View File

@ -769,7 +769,7 @@ epan_dissect_packet_contains_field(epan_dissect_t* edt,
void
epan_get_compiled_version_info(GString *str)
{
/* LUA */
/* Lua */
#ifdef HAVE_LUA
g_string_append(str, ", with " LUA_RELEASE);
#else

View File

@ -692,7 +692,7 @@ extern C shift##C(lua_State* L,int i)
#define THROW_LUA_ERROR(...) \
THROW_FORMATTED(DissectorError, __VA_ARGS__)
/* Catches any Wireshark exceptions in code and convert it into a LUA error.
/* Catches any Wireshark exceptions in code and convert it into a Lua error.
* Normal restrictions for TRY/CATCH apply, in particular, do not return! */
#define WRAP_NON_LUA_EXCEPTIONS(code) \
{ \

View File

@ -391,7 +391,7 @@ static true_false_string* true_false_string_from_table(lua_State* L, int idx) {
return NULL;
}
/* Arrays in LUA start with index number 1 */
/* Arrays in Lua start with index number 1 */
switch (lua_tointeger(L,-2)) {
case 1:
g_free(true_string);
@ -450,7 +450,7 @@ static unit_name_string* unit_name_string_from_table(lua_State* L, int idx) {
return NULL;
}
/* Arrays in LUA start with index number 1 */
/* Arrays in Lua start with index number 1 */
switch (lua_tointeger(L,-2)) {
case 1:
g_free((gchar *)units->singular);

View File

@ -79,7 +79,7 @@ int decode_dcerpc(packet_info *pinfo _U_, proto_tree *tree, PKT_INFO* pkt_info)
if (is_dcerpc_context_zero(pkt_info->dcerpc_pkt_type))
{ /* This is needed to overcome an apparent Wireshark bug
found in the LUA code - is this still true in C? */
found in the Lua code - is this still true in C? */
pkt_info->rrpd.session_id = 1;
}
else

View File

@ -818,7 +818,7 @@ static void cleanup_globals(void)
/* This function adds the RTE data to the tree. The summary ptr is currently
not used but will be used for summariser information once this feature has
been ported from the LUA code. */
been ported from the Lua code. */
static void write_rte(RRPD *in_rrpd, tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, char *summary)
{
nstime_t rte_art;