gsm_04_08: Specify key_seq when calling gsm48_tx_mm_auth_req

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
diff --git a/openbsc/src/token_auth.c b/openbsc/src/token_auth.c
index f6be0bc..fd81f03 100644
--- a/openbsc/src/token_auth.c
+++ b/openbsc/src/token_auth.c
@@ -103,7 +103,7 @@
 			if (lchan) {
 				u_int8_t auth_rand[16];
 				/* kick the subscriber off the network */
-				gsm48_tx_mm_auth_req(lchan, auth_rand);
+				gsm48_tx_mm_auth_req(lchan, auth_rand, 0);
 				gsm48_tx_mm_auth_rej(lchan);
 				/* FIXME: close the channel early ?*/
 				//gsm48_send_rr_Release(lchan);
@@ -139,7 +139,7 @@
 	lchan = lchan_for_subscr(sms->receiver);
 	if (lchan) {
 		/* kick the subscriber off the network */
-		gsm48_tx_mm_auth_req(lchan, auth_rand);
+		gsm48_tx_mm_auth_req(lchan, auth_rand, 0);
 		gsm48_tx_mm_auth_rej(lchan);
 		/* FIXME: close the channel early ?*/
 		//gsm48_send_rr_Release(lchan);