aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-bsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-08-03 11:05:29 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-08-03 11:05:29 +0200
commit59043d8c9423e63b4617fa8b10eb9548d4432d27 (patch)
treeeba11fe249c8477a5ff1007578c25a3cb19b3fc8 /openbsc/src/osmo-bsc
parent9b5db287c60f87d28cfaf263fabc6d22ae806c36 (diff)
typo: Mandantory -> Mandatory.. a common typo of mine
Diffstat (limited to 'openbsc/src/osmo-bsc')
-rw-r--r--openbsc/src/osmo-bsc/osmo_bsc_bssap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/src/osmo-bsc/osmo_bsc_bssap.c b/openbsc/src/osmo-bsc/osmo_bsc_bssap.c
index 0c114c47f..f17db3225 100644
--- a/openbsc/src/osmo-bsc/osmo_bsc_bssap.c
+++ b/openbsc/src/osmo-bsc/osmo_bsc_bssap.c
@@ -121,7 +121,7 @@ static int bssmap_handle_paging(struct gsm_network *net,
tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l4h + 1, payload_length - 1, 0, 0);
if (!TLVP_PRESENT(&tp, GSM0808_IE_IMSI)) {
- LOGP(DMSC, LOGL_ERROR, "Mandantory IMSI not present.\n");
+ LOGP(DMSC, LOGL_ERROR, "Mandatory IMSI not present.\n");
return -1;
} else if ((TLVP_VAL(&tp, GSM0808_IE_IMSI)[0] & GSM_MI_TYPE_MASK) != GSM_MI_TYPE_IMSI) {
LOGP(DMSC, LOGL_ERROR, "Wrong content in the IMSI\n");
@@ -129,7 +129,7 @@ static int bssmap_handle_paging(struct gsm_network *net,
}
if (!TLVP_PRESENT(&tp, GSM0808_IE_CELL_IDENTIFIER_LIST)) {
- LOGP(DMSC, LOGL_ERROR, "Mandantory CELL IDENTIFIER LIST not present.\n");
+ LOGP(DMSC, LOGL_ERROR, "Mandatory CELL IDENTIFIER LIST not present.\n");
return -1;
}
@@ -313,7 +313,7 @@ static int bssmap_handle_assignm_req(struct osmo_bsc_sccp_con *conn,
tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l4h + 1, length - 1, 0, 0);
if (!TLVP_PRESENT(&tp, GSM0808_IE_CHANNEL_TYPE)) {
- LOGP(DMSC, LOGL_ERROR, "Mandantory channel type not present.\n");
+ LOGP(DMSC, LOGL_ERROR, "Mandatory channel type not present.\n");
goto reject;
}