aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gtp.c
diff options
context:
space:
mode:
authorRoland Knall <rknall@gmail.com>2022-06-30 16:38:05 +0200
committerRoland Knall <r.knall@moba.cc>2022-06-30 16:38:05 +0200
commitb165f31cd3aaf2f52ac02c6dd19e4cb3eca8d161 (patch)
treeff257913ad785c924f30de07a2f12aa36ed336f5 /epan/dissectors/packet-gtp.c
parent09800da7921edb4d3ee20f3986971c9638ccd968 (diff)
gtp: Fix copy-paste error
Diffstat (limited to 'epan/dissectors/packet-gtp.c')
-rw-r--r--epan/dissectors/packet-gtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-gtp.c b/epan/dissectors/packet-gtp.c
index b75e9fdbef..8276bf5eff 100644
--- a/epan/dissectors/packet-gtp.c
+++ b/epan/dissectors/packet-gtp.c
@@ -5947,7 +5947,7 @@ decode_qos_umts(tvbuff_t * tvb, int offset, packet_info * pinfo, proto_tree * tr
if ((guar_dl_ext2 > 0xba) && (guar_dl_ext2 <= 0xfa)) {
gd = 1500 + (guar_dl_ext2-0xa1) * 10;
proto_tree_add_uint_format(ext_tree_qos, hf_gtp_qos_guar_ul, tvb, offset + (16 - 1) * utf8_type + 1, utf8_type, gd,
- "Ext2 Guaranteed bit rate for uplink: %u Mbps", gd);
+ "Ext2 Guaranteed bit rate for downlink: %u Mbps", gd);
}
}