aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-04-18 00:54:13 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-04-18 02:40:30 +0800
commitbedaf5da64df4ee816a278f267b9c1ba9f251bd8 (patch)
treeccc1199b04dad60f117458f429c7431fb2b50e33 /openbsc
parent2b08aa35a61e30ddcf50ed976502f0622ca55b74 (diff)
bssap: Move parsing of paging into the paging section...
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/src/bssap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/bssap.c b/openbsc/src/bssap.c
index 004d178d4..8cafde5b6 100644
--- a/openbsc/src/bssap.c
+++ b/openbsc/src/bssap.c
@@ -60,7 +60,7 @@ static u_int16_t get_country_code_for_msc(struct gsm_network *net)
static int bssmap_paging_cb(unsigned int hooknum, unsigned int event, struct msgb *msg, void *data, void *param)
{
- LOGP(DMSC, LOGL_DEBUG, "Paging is complete.\n");
+ LOGP(DPAG, LOGL_DEBUG, "Paging is complete.\n");
return 0;
}
@@ -145,7 +145,7 @@ static int bssmap_handle_paging(struct gsm_network *net, struct msgb *msg, unsig
subscr->tmsi = tmsi;
subscr->lac = lac;
paged = paging_request(net, subscr, chan_needed, bssmap_paging_cb, subscr);
- LOGP(DMSC, LOGL_DEBUG, "Paged IMSI: '%s' TMSI: '0x%x/%u' LAC: 0x%x on #bts: %d\n", mi_string, tmsi, tmsi, lac, paged);
+ LOGP(DPAG, LOGL_DEBUG, "Paged IMSI: '%s' TMSI: '0x%x/%u' LAC: 0x%x on #bts: %d\n", mi_string, tmsi, tmsi, lac, paged);
subscr_put(subscr);
return -1;