summaryrefslogtreecommitdiff
path: root/print-symantec.c
diff options
context:
space:
mode:
authorguy <guy>2004-03-22 20:02:01 +0000
committerguy <guy>2004-03-22 20:02:01 +0000
commit346d60dcd0724b5e65e624fc7e5b98c0eb72a8f6 (patch)
treeedf348b90ffe6e189aa95a4cb1e462d30950451e /print-symantec.c
parent5e5c1c9164f789ae53c30b3d1a1688fa5fef43b1 (diff)
downloadtcpdump-346d60dcd0724b5e65e624fc7e5b98c0eb72a8f6.tar.gz
Fix a typo.
We don't have source or destination MAC addresses in the Axent/Symantec firewall capture file, so we don't print them - therefore, we shouldn't put ", " before the Ethernet type.
Diffstat (limited to 'print-symantec.c')
-rw-r--r--print-symantec.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/print-symantec.c b/print-symantec.c
index 8dc0040a..a921b49d 100644
--- a/print-symantec.c
+++ b/print-symantec.c
@@ -20,7 +20,7 @@
*/
#ifndef lint
static const char rcsid[] _U_ =
- "@(#) $Header: /tcpdump/master/tcpdump/print-symantec.c,v 1.2 2004-03-17 23:24:38 guy Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-symantec.c,v 1.3 2004-03-22 20:02:01 guy Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
@@ -57,16 +57,16 @@ symantec_hdr_print(register const u_char *bp, u_int length)
etype = ntohs(sp->ether_type);
if (!qflag) {
if (etype <= ETHERMTU)
- (void)printf(", invalid ethertype %u", etype);
+ (void)printf("invalid ethertype %u", etype);
else
- (void)printf(", ethertype %s (0x%04x)",
+ (void)printf("ethertype %s (0x%04x)",
tok2str(ethertype_values,"Unknown", etype),
etype);
} else {
if (etype <= ETHERMTU)
- (void)printf(", invalid ethertype %u", etype);
+ (void)printf("invalid ethertype %u", etype);
else
- (void)printf(", %s", tok2str(ethertype_values,"Unknown Ethertype (0x%04x)", etype));
+ (void)printf("%s", tok2str(ethertype_values,"Unknown Ethertype (0x%04x)", etype));
}
(void)printf(", length %u: ", length);
@@ -88,7 +88,7 @@ symantec_if_print(const struct pcap_pkthdr *h, const u_char *p)
u_short extracted_ether_type;
if (caplen < sizeof (struct symantec_header)) {
- printf("[|syhmantec]");
+ printf("[|symantec]");
return caplen;
}