aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/lua
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-05-22 08:14:01 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-05-22 08:14:01 +0000
commitf0b33a47893e76488561e57d6c2dce07a1295d4b (patch)
tree94060daf713860116bedfbe9673d9a057b4a0824 /plugins/lua
parent92552c2d765dcf89883392fcd11556d54f2843e5 (diff)
ethereal->wireshark updates
svn path=/trunk/; revision=18206
Diffstat (limited to 'plugins/lua')
-rw-r--r--plugins/lua/README4
-rw-r--r--plugins/lua/elua_proto.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/lua/README b/plugins/lua/README
index ca86f646f7..473c034175 100644
--- a/plugins/lua/README
+++ b/plugins/lua/README
@@ -29,9 +29,9 @@ SubTreeType -- a class to represent an ett
SubTreeTypeArr -- a class that represents the ett array for a protocol
.new(subtree*,...) -- creates an array
:add(subtree*,...) -- adds Etts to the array
- :register() -- registers the ett array with ethereal
+ :register() -- registers the ett array with wireshark
-Proto -- a class that represents protocol info in ethereal
+Proto -- a class that represents protocol info in wireshark
.new(name,filter_name,descr) -- creates and registers a new protocol
:register_field_array(field_array) -- registers a field array as this protocol's
:add_uint_pref(abbr,...) -- adds an uint preference to this protocol
diff --git a/plugins/lua/elua_proto.c b/plugins/lua/elua_proto.c
index 5a3c4bd6f8..d6d3a8decf 100644
--- a/plugins/lua/elua_proto.c
+++ b/plugins/lua/elua_proto.c
@@ -641,7 +641,7 @@ int ProtoField_register(lua_State* L) {
ELUA_CLASS_DEFINE(Proto,NOP)
/*
- A new protocol in ethereal. Protocols have more uses, the main one is to dissect
+ A new protocol in wireshark. Protocols have more uses, the main one is to dissect
a protocol. But they can be just dummies used to register preferences for
other purposes.
*/