frame_relay; Fix Q.933 async STATUS at DLC creation

Fix the encoding of the asynchronous Q.933 STATUS message
we send at DLC creation time.

Change-Id: Id1460ffa6266be85f44579c447421eed12481b02
Closes: OS#5010
This commit is contained in:
Harald Welte 2021-02-05 11:09:30 +01:00
parent 8373c05a35
commit f3dc0f94c3
1 changed files with 1 additions and 1 deletions

View File

@ -977,7 +977,7 @@ struct osmo_fr_dlc *osmo_fr_dlc_alloc(struct osmo_fr_link *link, uint16_t dlci)
llist_add_tail(&dlc->list, &link->dlc_list);
dlc->add = true;
tx_lmi_q933_status(link, Q933_IEI_PVC_STATUS);
tx_lmi_q933_status(link, Q933_REPT_SINGLE_PVC_ASYNC_STS);
return dlc;
}