aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-e212.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2012-01-24 20:44:49 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2012-01-24 20:44:49 +0000
commite53708584769d9c402cd488a7806e6a9df288e88 (patch)
tree01c17ebf1b5baf6207620bb94b86e9023bd6d74f /epan/dissectors/packet-e212.c
parent13bd3bfbaad32d0e5fc6ebcfbc9c300c61a9f423 (diff)
Get rid of a non-ASCII char
svn path=/trunk/; revision=40706
Diffstat (limited to 'epan/dissectors/packet-e212.c')
-rw-r--r--epan/dissectors/packet-e212.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-e212.c b/epan/dissectors/packet-e212.c
index 6e091c5209..06e6718e91 100644
--- a/epan/dissectors/packet-e212.c
+++ b/epan/dissectors/packet-e212.c
@@ -49,7 +49,7 @@
*
* Find the bullentines here:
* http://www.itu.int/en/publications/ITU-T/Pages/publications.aspx?parent=T-SP&view=T-SP1
- * Some updates from Annex to ITU Operational Bulletin No. 992 – 15.XI.2011
+ * Some updates from Annex to ITU Operational Bulletin No. 992 of 15.XI.2011
* http://www.itu.int/dms_pub/itu-t/opb/sp/T-SP-E.212B-2011-PDF-E.pdf
*/
static const value_string E212_codes[] = {
@@ -969,14 +969,14 @@ static const value_string mcc_mnc_codes[] = {
{ 240250, "Digitel Mobile Srl" },
{ 240260, "Beepsend AB" },
{ 240270, "MyIndian AB" },
- { 240280, "CoolTEL Aps A.B." },
- { 240290, "Mercury International Carrier Services" },
+ { 240280, "CoolTEL Aps A.B." },
+ { 240290, "Mercury International Carrier Services" },
{ 240300, "NextGen Mobile Ltd" },
{ 240310, "Mobimax AB" },
{ 240320, "Compatel Ltd" },
{ 240330, "Mobile Arts AB" },
{ 240340, "Tigo Ltd" },
- { 240400, "ReWiCom Scandinavia AB" },
+ { 240400, "ReWiCom Scandinavia AB" },
{ 242010, "Telenor Mobil AS" },
{ 242020, "Netcom GSM AS" },
{ 242030, "Teletopia Mobile Communications AS" },
@@ -2364,7 +2364,7 @@ dissect_e212_mcc_mnc_ep_str(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
* known, do NOT print unknown.
*/
mcc_mnc_str = ep_strdup_printf("MCC %u %s, MNC %03u %s",
- mcc,
+ mcc,
val_to_str_ext_const(mcc,&E212_codes_ext,""),
mnc,
val_to_str_ext_const(mcc * 1000 + mnc, &mcc_mnc_codes_ext, ""));
@@ -2377,7 +2377,7 @@ dissect_e212_mcc_mnc_ep_str(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
* known, do NOT print unknown.
*/
mcc_mnc_str = ep_strdup_printf("MCC %u %s, MNC %02u %s",
- mcc,
+ mcc,
val_to_str_ext_const(mcc,&E212_codes_ext,""),
mnc,
val_to_str_ext_const(mcc * 1000 + mnc, &mcc_mnc_codes_ext, ""));