aboutsummaryrefslogtreecommitdiffstats
path: root/src/gsm_04_08.c
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2008-12-30 13:28:30 +0000
committerHolger Freyther <zecke@selfish.org>2008-12-30 13:28:30 +0000
commit429e77612ad11c261445eae76a29575588d4efdd (patch)
tree813cf21595851fe86f459dac1ccbd579296d6c2a /src/gsm_04_08.c
parentb7193e4e9498fbc51a985a24e374832976997355 (diff)
Fix documentation so one is finding it in GSM04.08
UPDATE => UPDATING
Diffstat (limited to 'src/gsm_04_08.c')
-rw-r--r--src/gsm_04_08.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gsm_04_08.c b/src/gsm_04_08.c
index a0ed52b4a..0f3e91d92 100644
--- a/src/gsm_04_08.c
+++ b/src/gsm_04_08.c
@@ -153,7 +153,7 @@ static int gsm48_sendmsg(struct msgb *msg)
}
-/* Chapter 9.2.14 : Send LOCATION UPDATE REJECT */
+/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
int gsm0408_loc_upd_rej(struct gsm_lchan *lchan, u_int8_t cause)
{
struct msgb *msg = gsm48_msgb_alloc();
@@ -166,7 +166,7 @@ int gsm0408_loc_upd_rej(struct gsm_lchan *lchan, u_int8_t cause)
gh->msg_type = GSM48_MT_MM_LOC_UPD_REJECT;
gh->data[0] = cause;
- DEBUGP(DMM, "-> LOCATION UPDATE REJECT\n");
+ DEBUGP(DMM, "-> LOCATION UPDATING REJECT\n");
return gsm48_sendmsg(msg);
}
@@ -290,7 +290,7 @@ static int mm_rx_id_resp(struct msgb *msg)
if (!lchan->subscr)
lchan->subscr = db_create_subscriber(mi_string);
- /* We have a pending UPDATE REQUEST handle it now */
+ /* We have a pending UPDATING REQUEST handle it now */
if (lchan->pending_update_request) {
if (lchan->subscr->authorized) {
db_subscriber_alloc_tmsi(lchan->subscr);
@@ -420,7 +420,7 @@ static int gsm0408_rcv_mm(struct msgb *msg)
switch (gh->msg_type & 0xbf) {
case GSM48_MT_MM_LOC_UPD_REQUEST:
- DEBUGP(DMM, "LOCATION UPDATE REQUEST\n");
+ DEBUGP(DMM, "LOCATION UPDATING REQUEST\n");
rc = mm_rx_loc_upd_req(msg);
break;
case GSM48_MT_MM_ID_RESP: