[asterisk-commits] mmichelson: trunk r355274 - in /trunk: ./ channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Feb 14 10:28:05 CST 2012
Author: mmichelson
Date: Tue Feb 14 10:28:01 2012
New Revision: 355274
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=355274
Log:
Properly invert the return of a strncmp call.
This was causing identification that should have been
made private to be public.
(closes issue AST-814)
reported by Patrick Anderson
Patches:
chan_sip.c.diff uploaded by Patrick Anderson (license 5430)
........
Merged revisions 355268 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 355271 from http://svn.asterisk.org/svn/asterisk/branches/10
Modified:
trunk/ (props changed)
trunk/channels/chan_sip.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: trunk/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_sip.c?view=diff&rev=355274&r1=355273&r2=355274
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Tue Feb 14 10:28:01 2012
@@ -15538,7 +15538,7 @@
}
ast_copy_string(privacy, sip_get_header(req, "Privacy"), sizeof(privacy));
- if (!ast_strlen_zero(privacy) && strncmp(privacy, "id", 2)) {
+ if (!ast_strlen_zero(privacy) && !strncmp(privacy, "id", 2)) {
callingpres = AST_PRES_PROHIB_USER_NUMBER_NOT_SCREENED;
}
if (!cid_name) {
More information about the asterisk-commits
mailing list