* fix location update reject (actually reject, not accept)

This commit is contained in:
Harald Welte 2008-12-27 19:53:37 +00:00
parent 98243f8e48
commit 10b487b1c0
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ int gsm0408_loc_upd_rej(struct gsm_lchan *lchan, u_int8_t cause)
gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
gh->proto_discr = GSM48_PDISC_MM;
gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
gh->msg_type = GSM48_MT_MM_LOC_UPD_REJECT;
gh->data[0] = cause;
DEBUGP(DMM, "-> LOCATION UPDATE REJECT\n");