From a0cc432cfe54aed16c0391855a0f9dfa2f475544 Mon Sep 17 00:00:00 2001 From: Jaap Keuter Date: Wed, 13 Jun 2007 06:54:49 +0000 Subject: Fix for bug 1632: Fix bitmask for FCP "retry requested/reply". svn path=/trunk/; revision=22088 --- epan/dissectors/packet-fcels.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'epan/dissectors/packet-fcels.c') diff --git a/epan/dissectors/packet-fcels.c b/epan/dissectors/packet-fcels.c index dbf5a6485c..f14486dfde 100644 --- a/epan/dissectors/packet-fcels.c +++ b/epan/dissectors/packet-fcels.c @@ -2477,13 +2477,13 @@ proto_register_fcels (void) HFILL}}, { &hf_fcels_fcpflags_trireq, {"Task Retry Ident", "fcels.fcpflags.trireq", FT_BOOLEAN, 32, - TFS(&tfs_fc_fcels_fcpflags_trireq), 0x2000, "", HFILL}}, + TFS(&tfs_fc_fcels_fcpflags_trireq), 1 << 9, "", HFILL}}, { &hf_fcels_fcpflags_trirep, {"Task Retry Ident", "fcels.fcpflags.trirep", FT_BOOLEAN, 32, - TFS(&tfs_fc_fcels_fcpflags_trirep), 0x2000, "", HFILL}}, + TFS(&tfs_fc_fcels_fcpflags_trirep), 1 << 9, "", HFILL}}, { &hf_fcels_fcpflags_retry, {"Retry", "fcels.fcpflags.retry", FT_BOOLEAN, 32, - TFS(&tfs_fc_fcels_fcpflags_retry), 0x1000, "", HFILL}}, + TFS(&tfs_fc_fcels_fcpflags_retry), 1 << 8, "", HFILL}}, { &hf_fcels_fcpflags_ccomp, {"Comp", "fcels.fcpflags.ccomp", FT_BOOLEAN, 32, TFS(&tfs_fc_fcels_fcpflags_ccomp), 0x0080, "", HFILL}}, -- cgit v1.2.3