aboutsummaryrefslogtreecommitdiffstats
path: root/packet-fcswils.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-11-19 04:30:11 +0000
committerGuy Harris <guy@alum.mit.edu>2003-11-19 04:30:11 +0000
commit1ad8bf690c5f1c86ba3a01056460cd8274d625a9 (patch)
tree48d965555893c0e454530441d714f98f2aa0f887 /packet-fcswils.c
parent9e097e07e710606e176f1d247136aa62fc24f1f4 (diff)
downloadwireshark-1ad8bf690c5f1c86ba3a01056460cd8274d625a9.tar.gz
wireshark-1ad8bf690c5f1c86ba3a01056460cd8274d625a9.tar.bz2
wireshark-1ad8bf690c5f1c86ba3a01056460cd8274d625a9.zip
From Dave Sclarsky: fix the offset for the Node WWN.
svn path=/trunk/; revision=9032
Diffstat (limited to 'packet-fcswils.c')
-rw-r--r--packet-fcswils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-fcswils.c b/packet-fcswils.c
index 809362ddde..a553de2074 100644
--- a/packet-fcswils.c
+++ b/packet-fcswils.c
@@ -2,7 +2,7 @@
* Routines for FC Inter-switch link services
* Copyright 2001, Dinesh G Dutt <ddutt@cisco.com>
*
- * $Id: packet-fcswils.c,v 1.6 2003/10/30 02:06:12 guy Exp $
+ * $Id: packet-fcswils.c,v 1.7 2003/11/19 04:30:11 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -962,8 +962,8 @@ dissect_swils_rscn (tvbuff_t *tvb, proto_tree *rscn_tree, guint8 isreq)
fc_to_str (tvb_get_ptr (tvb, offset+1, 3)));
proto_tree_add_string (dev_tree, hf_swils_rscn_pwwn, tvb, offset+4, 8,
fcwwn_to_str (tvb_get_ptr (tvb, offset+4, 8)));
- proto_tree_add_string (dev_tree, hf_swils_rscn_nwwn, tvb, offset+4, 8,
- fcwwn_to_str (tvb_get_ptr (tvb, offset+4, 8)));
+ proto_tree_add_string (dev_tree, hf_swils_rscn_nwwn, tvb, offset+12, 8,
+ fcwwn_to_str (tvb_get_ptr (tvb, offset+12, 8)));
offset += 20;
}
}