summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorJeff Peeler <jpeeler@digium.com>2010-10-29 21:50:18 +0000
committerJeff Peeler <jpeeler@digium.com>2010-10-29 21:50:18 +0000
commita491f69be66104dc76530ba4de0052ed6b264dcb (patch)
treea811b185753b106ff4810dc5ea0367c6edc286e0 /channels
parent3162a8e558bfadf5f9f6e073e78cd07706747e70 (diff)
Merged revisions 293305 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r293305 | jpeeler | 2010-10-29 16:48:38 -0500 (Fri, 29 Oct 2010) | 9 lines Modify sip_setoption to not complain about unknown options. This now behaves just like the other setoption callbacks. For the curious the offending option for the reporter was AST_OPTION_CHANNEL_WRITE which was getting passed due to a fix for chan_local in 286189. (closes issue #17985) Reported by: globalnetinc ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@293306 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 00713d5e6..a53fe4a1d 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -4065,7 +4065,6 @@ static int sip_setoption(struct ast_channel *chan, int option, void *data, int d
res = 0;
break;
default:
- ast_log(LOG_NOTICE, "Unknown option: %d\n", option);
break;
}