summaryrefslogtreecommitdiffstats
path: root/openbsc/src/gprs/gprs_ns.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbsc/src/gprs/gprs_ns.c')
-rw-r--r--openbsc/src/gprs/gprs_ns.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/openbsc/src/gprs/gprs_ns.c b/openbsc/src/gprs/gprs_ns.c
index 13ea92dd..8cb26a63 100644
--- a/openbsc/src/gprs/gprs_ns.c
+++ b/openbsc/src/gprs/gprs_ns.c
@@ -332,8 +332,8 @@ static const struct value_string timer_mode_strs[] = {
static void nsvc_start_timer(struct gprs_nsvc *nsvc, enum nsvc_timer_mode mode)
{
- DEBUGP(DNS, "NSVC=%u Starting timer in mode %s (%u seconds)\n",
- nsvc->nsvci, get_value_string(timer_mode_strs, mode),
+ DEBUGP(DNS, "NSEI=%u Starting timer in mode %s (%u seconds)\n",
+ nsvc->nsei, get_value_string(timer_mode_strs, mode),
timer_mode_tout[mode]);
if (bsc_timer_pending(&nsvc->timer))
@@ -347,8 +347,8 @@ static void gprs_ns_timer_cb(void *data)
{
struct gprs_nsvc *nsvc = data;
- DEBUGP(DNS, "NSVC=%u Timer expired in mode %s (%u seconds)\n",
- nsvc->nsvci, get_value_string(timer_mode_strs, nsvc->timer_mode),
+ DEBUGP(DNS, "NSEI=%u Timer expired in mode %s (%u seconds)\n",
+ nsvc->nsei, get_value_string(timer_mode_strs, nsvc->timer_mode),
timer_mode_tout[nsvc->timer_mode]);
switch (nsvc->timer_mode) {