From a6895cb26d7ed44b221adbd3766adbda280fcdd4 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Mon, 25 Jun 2007 01:10:06 +0000 Subject: [PATCH] Merged revisions 71414 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r71414 | file | 2007-06-24 21:02:49 -0400 (Sun, 24 Jun 2007) | 2 lines Ignore other URIs after the first in a 300 Multiple Choice response. (issue #10041 reported by homesick) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@71430 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 85086d044c..9c0c2b1f2f 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -11638,10 +11638,12 @@ static struct ast_custom_function sipchaninfo_function = { static void parse_moved_contact(struct sip_pvt *p, struct sip_request *req) { char tmp[BUFSIZ]; - char *s, *e, *uri; + char *s, *e, *uri, *t; char *domain; ast_copy_string(tmp, get_header(req, "Contact"), sizeof(tmp)); + if ((t = strchr(tmp, ','))) + *t = '\0'; s = get_in_brackets(tmp); uri = ast_strdupa(s); if (ast_test_flag(&p->flags[0], SIP_PROMISCREDIR)) {