aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeith <keith@rhizomatica.org>2017-08-14 15:06:33 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2017-08-26 21:17:07 +0200
commit80f1930fd46a06d56d132c1a5fef8abf7d76774c (patch)
tree6ccc9989bd55ea18a272cacc0074599bc2642993
parentb252a7a8c29c47b73179d8c9942e68bce3adcd1a (diff)
LIBMSC: Place correct dst address in status report
gsm_04_11.c: gsm340_gen_sms_status_report_tpdu() When we construct the status report PDU, use sms->src instead of sms->dst as the destination address This way we tell the MS that the message was delivered to the destination and not to itself. This is relevant for phones that display a textual representation of the delivery report. Change-Id: I2d4f87ac777465de9bfb5a775a789a2691755ee9
-rw-r--r--src/libmsc/gsm_04_11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmsc/gsm_04_11.c b/src/libmsc/gsm_04_11.c
index eede74c23..f87acea1e 100644
--- a/src/libmsc/gsm_04_11.c
+++ b/src/libmsc/gsm_04_11.c
@@ -303,7 +303,7 @@ static int gsm340_gen_sms_status_report_tpdu(struct msgb *msg,
*smsp = sms->msg_ref;
/* generate recipient address */
- oa_len = gsm340_gen_oa_sub(oa, sizeof(oa), &sms->dst);
+ oa_len = gsm340_gen_oa_sub(oa, sizeof(oa), &sms->src);
if (oa_len < 0)
return -ENOSPC;