aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-01-22 06:26:36 +0000
committerGuy Harris <guy@alum.mit.edu>2003-01-22 06:26:36 +0000
commite120160577df46123fa7c0e80e552f708487fef9 (patch)
tree22c2c3d3dabcca88c698b7f38f1e088711eed9f3 /epan/packet.c
parenta4280bade5973de55506ab23b433b493651fc02a (diff)
From Dinesh Dutt:
- A new decoder called MDSHDR which decodes the internal header of the Cisco MDS switch (this is different from the Boardwalk header). - Support for some more new columns as part of FC support. - Fixed the decoding of the Special Frame in FCIP. - Fixed the decoding of credit management type field in FLOGI/PLOGI frame in FC-ELS. svn path=/trunk/; revision=6974
Diffstat (limited to 'epan/packet.c')
-rw-r--r--epan/packet.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/epan/packet.c b/epan/packet.c
index 7969171aae..9dc2a4a526 100644
--- a/epan/packet.c
+++ b/epan/packet.c
@@ -1,7 +1,7 @@
/* packet.c
* Routines for packet disassembly
*
- * $Id: packet.c,v 1.85 2003/01/20 05:42:37 guy Exp $
+ * $Id: packet.c,v 1.86 2003/01/22 06:26:36 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -289,6 +289,9 @@ dissect_packet(epan_dissect_t *edt, union wtap_pseudo_header *pseudo_header,
edt->pi.oxid = 0;
edt->pi.rxid = 0;
edt->pi.r_ctl = 0;
+ edt->pi.src_idx = 0;
+ edt->pi.dst_idx = 0;
+ edt->pi.vsan = 0;
TRY {
edt->tvb = tvb_new_real_data(pd, fd->cap_len, fd->pkt_len);