dect
/
asterisk
Archived
13
0
Fork 0

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: http://svn.digium.com/svn/asterisk/trunk@293306 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
jpeeler 2010-10-29 21:50:18 +00:00
parent a1aeee27ef
commit 7e84e96403
1 changed files with 0 additions and 1 deletions

View File

@ -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;
}