asterisk/asterisk.patch.proxymwi

Mon, 17 Sep 2012 19:10:10 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Mon, 17 Sep 2012 19:10:10 +0200
changeset 689
9fe04d4d4e5a
parent 404
b6420eee9bde
child 798
4ef5d37e8bb2
permissions
-rw-r--r--

Update to new version of vendor software although Oracle fails to deliver.
More specifically, newer db(3) patch revisions exist but Oracle has
removed them from the canonical download server URI for Berkely DB.

michael@311 1 Index: channels/chan_sip.c
michael@311 2 diff -Nau channels/chan_sip.c.orig channels/chan_sip.c
michael@311 3 --- channels/chan_sip.c.orig 2011-01-14 18:32:52.000000000 +0100
michael@311 4 +++ channels/chan_sip.c 2011-03-13 14:34:29.000000000 +0100
michael@552 5 @@ -25791,6 +25791,7 @@
michael@311 6 struct sip_pvt *p;
michael@311 7 int newmsgs = 0, oldmsgs = 0;
michael@404 8 const char *vmexten = NULL;
michael@311 9 + char *s = NULL;
michael@311 10
michael@404 11 ao2_lock(peer);
michael@404 12
michael@552 13 @@ -25852,6 +25853,11 @@
michael@311 14 }
michael@311 15 /* Recalculate our side, and recalculate Call ID */
michael@311 16 ast_sip_ouraddrfor(&p->sa, &p->ourip, p);
michael@311 17 + /* Set the username = mailbox and remove the context */
michael@311 18 + ast_string_field_build(p, username, "%s", peer->name);
michael@311 19 + s = strchr(p->username, '@');
michael@311 20 + if (s != NULL)
michael@311 21 + *s = 0;
michael@311 22 build_via(p);
michael@552 23
michael@552 24 ao2_lock(peer);

mercurial