aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-spdy.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-10-13 11:55:34 +0200
committerMichael Mann <mmann78@netscape.net>2014-10-13 12:25:56 +0000
commit017fc82d7404444ef43212be19f1307ad129ccf2 (patch)
tree01164e42ae88d2e7ca70d2d3ed543b0dc8c585c2 /epan/dissectors/packet-spdy.c
parent2c23c7e79d3cf3fc82af67d706981dc1e7abb328 (diff)
SPDY: Fix bitmask for priority bit
Found by yurui ming Ping-Bug: 10566 Change-Id: I92e784eb91dc6c88af409e2936671b0ea473fba9 Reviewed-on: https://code.wireshark.org/review/4637 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-spdy.c')
-rw-r--r--epan/dissectors/packet-spdy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-spdy.c b/epan/dissectors/packet-spdy.c
index a80e150b6a..d843f54917 100644
--- a/epan/dissectors/packet-spdy.c
+++ b/epan/dissectors/packet-spdy.c
@@ -1813,7 +1813,7 @@ void proto_register_spdy(void)
},
{ &hf_spdy_priority,
{ "Priority", "spdy.priority",
- FT_UINT8, BASE_DEC, NULL, 0x07,
+ FT_UINT8, BASE_DEC, NULL, 0xE0,
NULL, HFILL
}
},