amqp: fix wrong bitmask (v2)

Bug: 16338
Change-Id: I745087b7816b8d2f710ec719eea0de63dd46d384
Reviewed-on: https://code.wireshark.org/review/35906
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2020-01-22 15:33:13 +01:00 committed by Anders Broman
parent 6e6831fbd3
commit a24231bc90
1 changed files with 2 additions and 2 deletions

View File

@ -12805,11 +12805,11 @@ proto_register_amqp(void)
NULL, HFILL}},
{&hf_amqp_method_basic_nack_multiple, {
"Multiple", "amqp.method.arguments.multiple",
FT_BOOLEAN, 8, NULL, 0x02,
FT_BOOLEAN, 8, NULL, 0x01,
NULL, HFILL}},
{&hf_amqp_method_basic_nack_requeue, {
"Requeue", "amqp.method.arguments.requeue",
FT_BOOLEAN, 8, NULL, 0x01,
FT_BOOLEAN, 8, NULL, 0x02,
NULL, HFILL}},
{&hf_amqp_method_file_qos_prefetch_size, {
"Prefetch-Size", "amqp.method.arguments.prefetch_size",