aboutsummaryrefslogtreecommitdiffstats
path: root/packet-bssgp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-10-30 19:43:15 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-10-30 19:43:15 +0000
commit8c471353cb2b8a60859c27acbb6cd3883e708a75 (patch)
tree6f274804b52513f874bf0426e7da5abcf490dde1 /packet-bssgp.c
parent776de9e7365f8b08e79f16468e93c49dab0b26bd (diff)
From Josef Korelus: fix reversed messages in true_false_string tables.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8836 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-bssgp.c')
-rw-r--r--packet-bssgp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/packet-bssgp.c b/packet-bssgp.c
index db08477fbd..bfb748eebf 100644
--- a/packet-bssgp.c
+++ b/packet-bssgp.c
@@ -2,7 +2,7 @@
* Routines for BSSGP (BSS GPRS Protocol ETSI GSM 08.18 version 6.7.1 TS 101 343 ) dissection
* Copyright 2000, Josef Korelus <jkor@quick.cz>
*
- * $Id: packet-bssgp.c,v 1.5 2003/10/05 23:27:24 jmayer Exp $
+ * $Id: packet-bssgp.c,v 1.6 2003/10/30 19:43:15 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -212,16 +212,16 @@ static const value_string radio_cause[] = {
{ 0, NULL },
};
static const true_false_string cr_string = {
- "The SDU contains a LLC ACK or SACK command/response frame type",
"The SDU does not contain a LLC ACK or SACK command/response frame type",
+ "The SDU contains a LLC ACK or SACK command/response frame type",
};
static const true_false_string t_string = {
- "The SDU contains signalling ",
- "The SDU contains data"
+ "The SDU contains data",
+ "The SDU contains signalling "
};
static const true_false_string a_string = {
- "Radio interface uses RLC/MAC ARQ functionality",
- "Radio interface uses RLC/MAC-UNITDATA functionality"
+ "Radio interface uses RLC/MAC-UNITDATA functionality",
+ "Radio interface uses RLC/MAC ARQ functionality"
};
static const true_false_string imsi_odd_even = {
"even number of identity digits and also when the TMSI/P-TMSI is used",