From f68d6e4c8cc08f1fe570d15e2185d339c81883b8 Mon Sep 17 00:00:00 2001 From: Anders Broman Date: Sun, 28 May 2006 20:28:20 +0000 Subject: Ethereal->Wireshark svn path=/trunk/; revision=18235 --- tap-protocolinfo.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tap-protocolinfo.c') diff --git a/tap-protocolinfo.c b/tap-protocolinfo.c index af81463745..3f4cc3108b 100644 --- a/tap-protocolinfo.c +++ b/tap-protocolinfo.c @@ -22,7 +22,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* This module provides Protocol Column Info tap for tethereal */ +/* This module provides Protocol Column Info tap for twireshark */ #ifdef HAVE_CONFIG_H # include "config.h" @@ -67,7 +67,7 @@ protocolinfo_packet(void *prs, packet_info *pinfo, epan_dissect_t *edt, const vo * and, if so, we report that error and exit. */ if (pinfo->cinfo == NULL) { - fprintf(stderr, "tethereal: the proto,colinfo tap doesn't work if the columns aren't being printed.\n"); + fprintf(stderr, "twireshark: the proto,colinfo tap doesn't work if the columns aren't being printed.\n"); exit(1); } gp=proto_get_finfo_ptr_array(edt->tree, rs->hf_index); @@ -103,13 +103,13 @@ protocolinfo_init(const char *optarg, void* userdata _U_) } } if(!field){ - fprintf(stderr, "tethereal: invalid \"-z proto,colinfo,,\" argument\n"); + fprintf(stderr, "twireshark: invalid \"-z proto,colinfo,,\" argument\n"); exit(1); } hfi=proto_registrar_get_byname(field); if(!hfi){ - fprintf(stderr, "tethereal: Field \"%s\" doesn't exist.\n", field); + fprintf(stderr, "twireshark: Field \"%s\" doesn't exist.\n", field); exit(1); } @@ -126,7 +126,7 @@ protocolinfo_init(const char *optarg, void* userdata _U_) error_string=register_tap_listener("frame", rs, rs->filter, NULL, protocolinfo_packet, NULL); if(error_string){ /* error, we failed to attach to the tap. complain and clean up */ - fprintf(stderr, "tethereal: Couldn't register proto,colinfo tap: %s\n", + fprintf(stderr, "twireshark: Couldn't register proto,colinfo tap: %s\n", error_string->str); g_string_free(error_string, TRUE); if(rs->filter){ -- cgit v1.2.1