diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-07-20 23:19:20 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-07-20 23:19:20 +0000 |
commit | 206b6edb1bc1f53a90f985383dfda6f29399a476 (patch) | |
tree | 1447c399115da05eb69eeed4f029a1e000827631 /plugins | |
parent | ca637b44130f4fbd0c606900432abe3907208486 (diff) | |
download | wireshark-206b6edb1bc1f53a90f985383dfda6f29399a476.tar.gz wireshark-206b6edb1bc1f53a90f985383dfda6f29399a476.tar.bz2 wireshark-206b6edb1bc1f53a90f985383dfda6f29399a476.zip |
From Anand V. Narwani: fix to the Info column for Request frames.
svn path=/trunk/; revision=5896
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/docsis/packet-docsis.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/docsis/packet-docsis.c b/plugins/docsis/packet-docsis.c index 90ed0a8b51..bdbd6c8abe 100644 --- a/plugins/docsis/packet-docsis.c +++ b/plugins/docsis/packet-docsis.c @@ -2,7 +2,7 @@ * Routines for docsis dissection * Copyright 2002, Anand V. Narwani <anarwani@cisco.com> * - * $Id: packet-docsis.c,v 1.2 2002/07/17 00:42:58 guy Exp $ + * $Id: packet-docsis.c,v 1.3 2002/07/20 23:19:20 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -357,8 +357,8 @@ dissect_docsis (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree) case FCTYPE_MACSPC: if (fcparm == 0x02) col_add_fstr (pinfo->cinfo, COL_INFO, - "Request Frame SID = %u Mini Slots = %u", mac_parm, - len_sid); + "Request Frame SID = %u Mini Slots = %u", len_sid, + mac_parm); else if (fcparm == 0x03) col_set_str (pinfo->cinfo, COL_INFO, "Mac Specific"); else |