Make sure not to feed BSSGP messages into RSL
diff --git a/openbsc/src/libabis/input/hsl.c b/openbsc/src/libabis/input/hsl.c
index 360be32..1afe82b 100644
--- a/openbsc/src/libabis/input/hsl.c
+++ b/openbsc/src/libabis/input/hsl.c
@@ -190,7 +190,8 @@
 	case 0x82:
 		/* FIXME: do something with BSSGP, i.e. forward it over
 		 * NSIP to OsmoSGSN */
-		return 0;
+		msgb_free(msg);
+		return 1;
 	}
 	return 0;
 }