aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2020-12-04 18:49:55 +0100
committerlaforge <laforge@osmocom.org>2020-12-04 18:20:15 +0000
commite3b20edec5684217c0f75d69ac622c4fe7be1480 (patch)
tree647f778aae338d3c5660f05a1ad8f626d55003d9 /include/osmocom
parent61e9de8f15475cc07f1460718a832f3dd9cd8cc2 (diff)
bssgp: Fix typo in BSSGP Message Type enum
Diffstat (limited to 'include/osmocom')
-rw-r--r--include/osmocom/gprs/protocol/gsm_08_18.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/osmocom/gprs/protocol/gsm_08_18.h b/include/osmocom/gprs/protocol/gsm_08_18.h
index 70ab011b..4c04f6b9 100644
--- a/include/osmocom/gprs/protocol/gsm_08_18.h
+++ b/include/osmocom/gprs/protocol/gsm_08_18.h
@@ -9,6 +9,9 @@
#define BVCI_SIGNALLING 0x0000
#define BVCI_PTM 0x0001
+/* typo backwards compatiblity */
+#define BSSGP_PDUT_RA_CAPA_UDPATE BSSGP_PDUT_RA_CAPA_UPDATE
+
/*! BSSGP PDU types (Section 11.3.26 / Table 11.27) */
enum bssgp_pdu_type {
/* PDUs between RL and BSSGP SAPs */
@@ -22,7 +25,7 @@ enum bssgp_pdu_type {
/* PDUs between GMM SAPs */
BSSGP_PDUT_PAGING_PS = 0x06,
BSSGP_PDUT_PAGING_CS = 0x07,
- BSSGP_PDUT_RA_CAPA_UDPATE = 0x08,
+ BSSGP_PDUT_RA_CAPA_UPDATE = 0x08,
BSSGP_PDUT_RA_CAPA_UPDATE_ACK = 0x09,
BSSGP_PDUT_RADIO_STATUS = 0x0a,
BSSGP_PDUT_SUSPEND = 0x0b,