From: Joshua Colp Date: Mon, 13 Nov 2006 17:05:32 +0000 (+0000) Subject: When sending an SMS with a user data header properly set the UDH flag in the first... X-Git-Tag: 1.2.14~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d9602565f5605a1853c9ca122b0afcf0008023b;p=thirdparty%2Fasterisk.git When sending an SMS with a user data header properly set the UDH flag in the first byte. (issue #8347 reported by hoffmeis) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@47549 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_sms.c b/apps/app_sms.c index 78ff4d1437..3a7677601f 100644 --- a/apps/app_sms.c +++ b/apps/app_sms.c @@ -1050,7 +1050,7 @@ static void sms_nextoutgoing (sms_t * h) unsigned char p = 2; h->omsg[0] = 0x91; /* SMS_DATA */ if (h->smsc) { /* deliver */ - h->omsg[p++] = (more ? 4 : 0); + h->omsg[p++] = (more ? 4 : 0) + ((h->udhl > 0) ? 0x40 : 0); p += packaddress (h->omsg + p, h->oa); h->omsg[p++] = h->pid; h->omsg[p++] = h->dcs;