[svn-commits] mmichelson: trunk r151439 - /trunk/channels/chan_sip.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Oct 21 18:31:18 CDT 2008


Author: mmichelson
Date: Tue Oct 21 18:31:17 2008
New Revision: 151439

URL: http://svn.digium.com/view/asterisk?view=rev&rev=151439
Log:
Get this compiling in dev-mode


Modified:
    trunk/channels/chan_sip.c

Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?view=diff&rev=151439&r1=151438&r2=151439
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Tue Oct 21 18:31:17 2008
@@ -21936,7 +21936,7 @@
 		char *params;
 
 		ast_copy_string(_srvlookup, srvlookup, sizeof(_srvlookup));
-		if (params = strchr(_srvlookup, ';')) {
+		if ((params = strchr(_srvlookup, ';'))) {
 			*params++ = '\0';
 		}
 		




More information about the svn-commits mailing list