aboutsummaryrefslogtreecommitdiffstats
path: root/packet-fcels.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 /packet-fcels.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 'packet-fcels.c')
-rw-r--r--packet-fcels.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-fcels.c b/packet-fcels.c
index 6f8c3ea3b9..1779048642 100644
--- a/packet-fcels.c
+++ b/packet-fcels.c
@@ -2,7 +2,7 @@
* Routines for FC Extended Link Services
* Copyright 2001, Dinesh G Dutt <ddutt@cisco.com>
*
- * $Id: packet-fcels.c,v 1.2 2002/12/10 02:49:31 guy Exp $
+ * $Id: packet-fcels.c,v 1.3 2003/01/22 06:26:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -264,12 +264,12 @@ construct_cmnsvc_string (guint16 flag, gchar *flagstr, guint8 opcode)
}
if (flag & 0x0800) {
- sprintf (&flagstr[stroff], "%sNormal B2B Credit Mgmt", punc);
+ sprintf (&flagstr[stroff], "%sAlt B2B Credit Mgmt", punc);
strcpy (punc, ", ");
stroff += 24;
}
else {
- sprintf (&flagstr[stroff], "%sAlt B2B Credit Mgmt", punc);
+ sprintf (&flagstr[stroff], "%sNormal B2B Credit Mgmt", punc);
strcpy (punc, ", ");
stroff += 21;
}