From: Automerge script Date: Mon, 6 Aug 2012 15:24:30 +0000 (+0000) Subject: Merged revisions 370798 via svnmerge from X-Git-Tag: 10.9.0-digiumphones-rc1~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64bf23b2d27d4200e0a9296637c8e4ef172a4e92;p=thirdparty%2Fasterisk.git Merged revisions 370798 via svnmerge from file:///srv/subversion/repos/asterisk/branches/10 ................ r370798 | mmichelson | 2012-08-06 10:02:04 -0500 (Mon, 06 Aug 2012) | 7 lines Improve debug message for temporary outbound proxies. Thanks to Paul Belanger for pointing this out. ........ Merged revisions 370797 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10-digiumphones@370817 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 512d925351..dff35aa6a2 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -3222,8 +3222,9 @@ static struct sip_proxy *obproxy_get(struct sip_pvt *dialog, struct sip_peer *pe { if (dialog && dialog->options && dialog->options->outboundproxy) { if (sipdebug) { - ast_debug(1, "BLAH\n"); + ast_debug(1, "OBPROXY: Applying dialplan set OBproxy to this call\n"); } + append_history(dialog, "OBproxy", "Using dialplan obproxy %s", dialog->options->outboundproxy->name); return dialog->options->outboundproxy; } if (peer && peer->outboundproxy) {