amqp: Fix spelling of Queueing (issue #17943)

Correct spelling of from Queueing to Queueing.
This fixes issue #17943.

Note that other instances of "Queueing" are
kept because it's technically a correct spelling,
but here it's the name of the protocol.
This commit is contained in:
Moshe Kaplan 2022-02-25 13:22:04 -05:00 committed by A Wireshark GitLab Utility
parent a059280b5d
commit 4fdf7eee6f
1 changed files with 1 additions and 1 deletions

View File

@ -13424,7 +13424,7 @@ proto_register_amqp(void)
static decode_as_t amqp_da = {"amqp", "amqp.version", 1, 0, &amqp_da_values, NULL, NULL,
decode_as_default_populate_list, decode_as_default_reset, decode_as_default_change, NULL};
proto_amqp = proto_register_protocol("Advanced Message Queueing Protocol", "AMQP", "amqp");
proto_amqp = proto_register_protocol("Advanced Message Queuing Protocol", "AMQP", "amqp");
/* Allows versions to be handled through Decode As */
proto_amqpv0_9 = proto_register_protocol_in_name_only("AMQP Version 0.9", "Version 0.9", "amqp.version.v0_9", proto_amqp, FT_BYTES);