Make sure not to feed BSSGP messages into RSL

This commit is contained in:
Harald Welte 2011-01-14 23:21:13 +01:00
parent 26d7907b02
commit 63467e8f28
1 changed files with 2 additions and 1 deletions

View File

@ -190,7 +190,8 @@ static int process_hsl_rsl(struct msgb *msg, struct e1inp_line *line)
case 0x82:
/* FIXME: do something with BSSGP, i.e. forward it over
* NSIP to OsmoSGSN */
return 0;
msgb_free(msg);
return 1;
}
return 0;
}