aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2006-05-31 17:38:42 +0000
committerGerald Combs <gerald@wireshark.org>2006-05-31 17:38:42 +0000
commit8958bab6dee184310e4393e33591eb0cef1f7de1 (patch)
treeafe5ad59d2280ee36c0ce913a4252cddc692436f /plugins
parent7bc853b62b59e6cf66ba2c3a2699a8a79ef864bd (diff)
Tethereal/tethereal -> TShark/tshark.
svn path=/trunk/; revision=18268
Diffstat (limited to 'plugins')
-rw-r--r--plugins/asn1/packet-asn1.c2
-rw-r--r--plugins/lua/elua_gui.c2
-rw-r--r--plugins/lua/elua_tap.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/asn1/packet-asn1.c b/plugins/asn1/packet-asn1.c
index 2155495453..fe8aadadb3 100644
--- a/plugins/asn1/packet-asn1.c
+++ b/plugins/asn1/packet-asn1.c
@@ -3506,7 +3506,7 @@ build_pdu_tree(const char *pduname)
#ifdef DISSECTOR_WITH_GUI
-/* This cannot work in twireshark.... don't include for now */
+/* This cannot work in tshark.... don't include for now */
#if GTK_MAJOR_VERSION >= 2
#define SHOWPDU /* this needs GTK2 */
#endif
diff --git a/plugins/lua/elua_gui.c b/plugins/lua/elua_gui.c
index 79c03e9274..c058ac05f2 100644
--- a/plugins/lua/elua_gui.c
+++ b/plugins/lua/elua_gui.c
@@ -499,7 +499,7 @@ ELUA_FUNCTION elua_retap_packets(lua_State* L) {
if ( ops->retap_packets ) {
ops->retap_packets();
} else {
- ELUA_ERROR(elua_retap_packets, "does not work on tWireshark");
+ ELUA_ERROR(elua_retap_packets, "does not work on TShark");
}
return 0;
diff --git a/plugins/lua/elua_tap.c b/plugins/lua/elua_tap.c
index 451ec6867e..185661504d 100644
--- a/plugins/lua/elua_tap.c
+++ b/plugins/lua/elua_tap.c
@@ -272,7 +272,7 @@ static int Tap_newindex(lua_State* L) {
function tap.packet(pinfo,tvb,userdata) ... end
*/
/* ELUA_ATTRIBUTE Tap_draw WO A function that will be called once every few seconds to redraw the gui objects
- in twireshark this funtion is called oly at the very end of the capture file.
+ in tshark this funtion is called oly at the very end of the capture file.
function tap.draw(userdata) ... end
*/