From eab55416f810fc49c4a63caa67f7889b11cd5d81 Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Tue, 30 Dec 2008 16:18:15 +0000 Subject: [PATCH] Fix regression and send the accept message again I removed gsm48_sendmsg(msg) when removing the send_sms from the _acc method. This is obviously wrong. Fix the regression, spotted while testing with LaF0rge. This regression was introduced in r120. --- src/gsm_04_08.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gsm_04_08.c b/src/gsm_04_08.c index 0f3e91d92..b19c92c99 100644 --- a/src/gsm_04_08.c +++ b/src/gsm_04_08.c @@ -197,6 +197,7 @@ int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi) lchan->pending_update_request = 0; DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n"); + ret = gsm48_sendmsg(msg); /* inform the upper layer on the progress */ if (bts->network->update_request)