diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-02-14 20:55:24 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-02-14 20:55:24 +0000 |
commit | 621ea6555822282f35c21419de684a3489675a8a (patch) | |
tree | 7519d206499311b5a3417fdf024cdfd7b1b4dcb4 /packet-prism.c | |
parent | d5afa610373051216b20490923bfc5cd9bd0cdd2 (diff) | |
download | wireshark-621ea6555822282f35c21419de684a3489675a8a.tar.gz wireshark-621ea6555822282f35c21419de684a3489675a8a.tar.bz2 wireshark-621ea6555822282f35c21419de684a3489675a8a.zip |
From Pavel Kankovsky: fix the name of the channel field in the Prism
802.11 radio header.
svn path=/trunk/; revision=10063
Diffstat (limited to 'packet-prism.c')
-rw-r--r-- | packet-prism.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-prism.c b/packet-prism.c index f6f60287d9..5da3fb5929 100644 --- a/packet-prism.c +++ b/packet-prism.c @@ -9,7 +9,7 @@ * * By Tim Newsham * - * $Id: packet-prism.c,v 1.10 2003/03/08 11:43:54 jmayer Exp $ + * $Id: packet-prism.c,v 1.11 2004/02/14 20:55:23 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -178,7 +178,7 @@ dissect_prism(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) VALFIELD(hosttime, "Host Time"); VALFIELD(mactime, "MAC Time"); - VALFIELD(channel, "Channel Time"); + VALFIELD(channel, "Channel"); VALFIELD(rssi, "RSSI"); VALFIELD(sq, "SQ"); VALFIELD(signal, "Signal"); @@ -208,7 +208,7 @@ proto_register_prism(void) INTFIELD2(FT_UINT32, msglen, "Message Length") VALFIELD2(hosttime, "Host Time") VALFIELD2(mactime, "MAC Time") - VALFIELD2(channel, "Channel Time") + VALFIELD2(channel, "Channel") VALFIELD2(rssi, "RSSI") VALFIELD2(sq, "SQ") VALFIELD2(signal, "Signal") |