aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-04-30 14:27:05 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-05-01 15:18:37 +0800
commitf94418a12917498c54682e2034857826b281a00b (patch)
tree2a60bd07e8fa866e9ddd89a649776db377257471
parent88b299ca2437afb88a365af07bebdc9c7f6570c3 (diff)
gsm_04_11.c: Use msgb->l4h instead of sms->smsh, as the latter is gone
-rw-r--r--openbsc/src/gsm_04_11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/gsm_04_11.c b/openbsc/src/gsm_04_11.c
index 0c12f15f5..81cb77bac 100644
--- a/openbsc/src/gsm_04_11.c
+++ b/openbsc/src/gsm_04_11.c
@@ -675,7 +675,7 @@ static int gsm411_rx_rp_ud(struct msgb *msg, struct gsm_trans *trans,
GSM411_RP_CAUSE_INV_MAND_INF);
return -EIO;
}
- msg->smsh = tpdu;
+ msg->l4h = tpdu;
DEBUGP(DSMS, "DST(%u,%s)\n", dst_len, hexdump(dst, dst_len));