dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 272804 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r272804 | mmichelson | 2010-06-28 12:31:40 -0500 (Mon, 28 Jun 2010) | 5 lines
  
  Decode URI in contact header of 302 response.
  
  ABE-2352
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@272805 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
mmichelson 2010-06-28 17:33:12 +00:00
parent fc87bc9cc9
commit 0dfe1d136e
1 changed files with 1 additions and 0 deletions

View File

@ -17947,6 +17947,7 @@ static void parse_moved_contact(struct sip_pvt *p, struct sip_request *req, char
separator = strchr(contact_number, ';'); /* And username ; parameters? */
if (separator)
*separator = '\0';
ast_uri_decode(contact_number);
if (set_call_forward) {
ast_debug(2, "Received 302 Redirect to extension '%s' (domain %s)\n", contact_number, domain);
if (p->owner) {