diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2003-03-06 07:39:19 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2003-03-06 07:39:19 +0000 |
commit | 1f3ad48739750143f78e4afcbf34b21cff61e9f9 (patch) | |
tree | 2069c1d7dd95b5dcfcaaa0b0efcf423ed8206ab5 | |
parent | 60de38066365d1a5838bcb0698e4269285eb75ea (diff) | |
download | wireshark-1f3ad48739750143f78e4afcbf34b21cff61e9f9.tar.gz wireshark-1f3ad48739750143f78e4afcbf34b21cff61e9f9.tar.bz2 wireshark-1f3ad48739750143f78e4afcbf34b21cff61e9f9.zip |
From Jamie F,
I forgot to fix the field names when adding the AFS ReplyIn and friends
yesterday, thus causing
-z proto,colinfo,rpc.time,rpc.time not to work.
They should not have been called rpc.* anyway.
I fixed RequestIn, ReplyIn, TimeFromRequest fields for AFS
request/response matching to have proper names starting with afs.
so we dont collide with the names for the ONC-RPC ones.
svn path=/trunk/; revision=7292
-rw-r--r-- | packet-afs-register-info.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-afs-register-info.h b/packet-afs-register-info.h index 5901285ec8..780865921c 100644 --- a/packet-afs-register-info.h +++ b/packet-afs-register-info.h @@ -8,7 +8,7 @@ * Portions based on information/specs retrieved from the OpenAFS sources at * www.openafs.org, Copyright IBM. * - * $Id: packet-afs-register-info.h,v 1.16 2003/03/05 09:52:22 sahlberg Exp $ + * $Id: packet-afs-register-info.h,v 1.17 2003/03/06 07:39:19 sahlberg Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -563,11 +563,11 @@ FT_ABSOLUTE_TIME, BASE_HEX, 0, 0, "Epoch Time", HFILL }}, { &hf_afs_ubik_isclone, { "Is Clone", "afs.ubik.isclone", FT_UINT32, BASE_HEX, 0, 0, "Is Clone", HFILL }}, -{ &hf_afs_reqframe, { "Request Frame", "rpc.reqframe", +{ &hf_afs_reqframe, { "Request Frame", "afs.reqframe", FT_FRAMENUM, BASE_NONE, NULL, 0, "Request Frame", HFILL }}, -{ &hf_afs_repframe, { "Reply Frame", "rpc.repframe", +{ &hf_afs_repframe, { "Reply Frame", "afs.repframe", FT_FRAMENUM, BASE_NONE, NULL, 0, "Reply Frame", HFILL }}, -{ &hf_afs_time, { "Time from request", "rpc.time", +{ &hf_afs_time, { "Time from request", "afs.time", FT_RELATIVE_TIME, BASE_NONE, NULL, 0, "Time between Request and Reply for ONC-RPC calls", HFILL }}, |