aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fcels.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2007-06-13 06:54:49 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2007-06-13 06:54:49 +0000
commita0cc432cfe54aed16c0391855a0f9dfa2f475544 (patch)
treea8dcb960d57edd075a2f102765fa199db35b806e /epan/dissectors/packet-fcels.c
parentd87fb06466748d0d38b5976caaf8281f613c5d12 (diff)
Fix for bug 1632:
Fix bitmask for FCP "retry requested/reply". svn path=/trunk/; revision=22088
Diffstat (limited to 'epan/dissectors/packet-fcels.c')
-rw-r--r--epan/dissectors/packet-fcels.c6
1 files changed, 3 insertions, 3 deletions
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}},