Fix regression and send the accept message again

I removed gsm48_sendmsg(msg) when removing the send_sms from the
_acc method. This is obviously wrong. Fix the regression, spotted
while testing with LaF0rge. This regression was introduced in r120.
diff --git a/src/gsm_04_08.c b/src/gsm_04_08.c
index 0f3e91d..b19c92c 100644
--- a/src/gsm_04_08.c
+++ b/src/gsm_04_08.c
@@ -197,6 +197,7 @@
 	lchan->pending_update_request = 0;
 	DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n");
 
+	ret = gsm48_sendmsg(msg);
 
 	/* inform the upper layer on the progress */
 	if (bts->network->update_request)