Display NSEI instead of NSVCI for all debug msgs
diff --git a/openbsc/src/gprs/gprs_ns.c b/openbsc/src/gprs/gprs_ns.c
index 13ea92d..8cb26a6 100644
--- a/openbsc/src/gprs/gprs_ns.c
+++ b/openbsc/src/gprs/gprs_ns.c
@@ -332,8 +332,8 @@
 
 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 @@
 {
 	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) {