aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-25 21:13:22 +0000
committertwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-25 21:13:22 +0000
commit440abfa5b24986bef906bfc4512a760d543aeb50 (patch)
tree9a5de3e1a607d3f4d2def252b38877e8aeca8eb2
parentc70bf5390bcfc57b44609cc3c1d00a32d355c8c9 (diff)
Merged revisions 139870 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r139870 | twilson | 2008-08-25 15:59:58 -0500 (Mon, 25 Aug 2008) | 10 lines Merged revisions 139869 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r139869 | twilson | 2008-08-25 15:46:10 -0500 (Mon, 25 Aug 2008) | 2 lines Make SIPADDHEADER() propagate indefinitely ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@139874 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--channels/chan_sip.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 3bec6f870..9b32f2647 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -22281,10 +22281,10 @@ static int sip_addheader(struct ast_channel *chan, void *data)
/* Check for headers */
while (!ok && no <= 50) {
no++;
- snprintf(varbuf, sizeof(varbuf), "_SIPADDHEADER%.2d", no);
+ snprintf(varbuf, sizeof(varbuf), "__SIPADDHEADER%.2d", no);
- /* Compare without the leading underscore */
- if( (pbx_builtin_getvar_helper(chan, (const char *) varbuf + 1) == (const char *) NULL) )
+ /* Compare without the leading underscores */
+ if( (pbx_builtin_getvar_helper(chan, (const char *) varbuf + 2) == (const char *) NULL) )
ok = TRUE;
}
if (ok) {