aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2021-02-05 11:09:30 +0100
committerHarald Welte <laforge@osmocom.org>2021-02-05 11:10:48 +0100
commitf3dc0f94c3c0d20ea1949ec358de954c6fc1da1d (patch)
treeaab7104dc81681ab45d0a5a32ff8bd0f3b08f679 /src
parent8373c05a35df8161dd8fb38492de49d3ddada0db (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/gb/frame_relay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gb/frame_relay.c b/src/gb/frame_relay.c
index 7c75cd06..c54384e7 100644
--- a/src/gb/frame_relay.c
+++ b/src/gb/frame_relay.c
@@ -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;
}