From ba4d28a36efb05a2db150fda4574d7883ebdd579 Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Mon, 29 Dec 2008 06:23:44 +0000 Subject: [PATCH] [gsm_04_08] Do not automatically initiate a call Do not automatically dial but release the channel immediately. The idea is that this was the paging command will be handled by the mobile station. --- src/gsm_04_08.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gsm_04_08.c b/src/gsm_04_08.c index c367102fb..5c30a17e6 100644 --- a/src/gsm_04_08.c +++ b/src/gsm_04_08.c @@ -2,6 +2,7 @@ * 3GPP TS 04.08 version 7.21.0 Release 1998 / ETSI TS 100 940 V7.21.0 */ /* (C) 2008 by Harald Welte + * (C) 2008 by Holger Hans Peter Freyther * * All Rights Reserved * @@ -193,9 +194,8 @@ int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi) gsm48_sendmsg(msg); - gsm0411_send_sms(lchan, 0); - - return gsm48_cc_tx_setup(lchan); + /* free the channel afterwards */ + return rsl_chan_release(lchan); } static char bcd2char(u_int8_t bcd)