From 512a68479cc407f4e67347a7a4717e003780d947 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Mon, 4 Mar 2013 17:16:26 +0000 Subject: [PATCH] From chaitanya via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8432 BE (3) AC is wrongly named as "Video" in (qos_acs) In the array of WME AC names, the name for tid 3 is wrongly named as "Video" it should be "Best Effort" instead. #BACKPORT(1.8,1.6) svn path=/trunk/; revision=48062 --- epan/dissectors/packet-ieee80211.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c index 7d3570068e..c4042b5de4 100644 --- a/epan/dissectors/packet-ieee80211.c +++ b/epan/dissectors/packet-ieee80211.c @@ -1103,7 +1103,7 @@ static const char *qos_acs[8] = { "Best Effort", "Background", "Background", - "Video", + "Best Effort", "Video", "Video", "Voice",