aboutsummaryrefslogtreecommitdiffstats
path: root/src/gsm_04_08.c
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2008-12-29 06:23:44 +0000
committerHolger Freyther <zecke@selfish.org>2008-12-29 06:23:44 +0000
commitba4d28a36efb05a2db150fda4574d7883ebdd579 (patch)
tree45fd7223a73331272c2abd851ab13f3f0947ec15 /src/gsm_04_08.c
parente27bb34223c0a71e06b898abfb3bb525fad9c971 (diff)
[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.
Diffstat (limited to 'src/gsm_04_08.c')
-rw-r--r--src/gsm_04_08.c6
1 files 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 <laforge@gnumonks.org>
+ * (C) 2008 by Holger Hans Peter Freyther <zecke@selfish.org>
*
* 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)