aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-radius.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-05-22 22:09:27 +0200
committerAnders Broman <a.broman58@gmail.com>2014-05-22 20:57:25 +0000
commitc4ca41e0ccdc0e0b648afcb35acef32c86a91169 (patch)
tree65278f4b055093a298a8a59db93ad1c4fde87e99 /epan/dissectors/packet-radius.c
parentb762dd0b586e19eea19cb4386b5aa0cf61adc64c (diff)
RADIUS: Remove double space before type (t=...)
Change-Id: I536a359e7c808b3ace8387e30117f307c0a66e8b Reviewed-on: https://code.wireshark.org/review/1729 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-radius.c')
-rw-r--r--epan/dissectors/packet-radius.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-radius.c b/epan/dissectors/packet-radius.c
index 9871bdaac3..7cc440eb11 100644
--- a/epan/dissectors/packet-radius.c
+++ b/epan/dissectors/packet-radius.c
@@ -898,7 +898,7 @@ void radius_tlv(radius_attr_info_t* a, proto_tree* tree, packet_info *pinfo _U_,
}
tlv_item = proto_tree_add_text(tree, tvb, offset, tlv_length,
- "TLV: l=%u t=%s(%u)", tlv_length,
+ "TLV: l=%u t=%s(%u)", tlv_length,
dictionary_entry->name, tlv_type);
tlv_length -= 2;
@@ -1046,7 +1046,7 @@ void dissect_attribute_value_pairs(proto_tree *tree, packet_info *pinfo, tvbuff_
}
avp_item = proto_tree_add_text(tree, tvb, offset, avp_length,
- "AVP: l=%u t=%s(%u)", avp_length,
+ "AVP: l=%u t=%s(%u)", avp_length,
dictionary_entry->name, avp_type);
avp_length -= 2;