From f2efcad8f45751df58e4647f524e64d5e60dd980 Mon Sep 17 00:00:00 2001 From: Mark Michelson Date: Tue, 21 Oct 2008 23:31:45 +0000 Subject: [PATCH] Merged revisions 151439 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r151439 | mmichelson | 2008-10-21 18:31:17 -0500 (Tue, 21 Oct 2008) | 3 lines Get this compiling in dev-mode ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@151441 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index cc43e7320a..b335362ebf 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -21247,7 +21247,7 @@ static struct sip_peer *build_peer(const char *name, struct ast_variable *v, str char *params; ast_copy_string(_srvlookup, srvlookup, sizeof(_srvlookup)); - if (params = strchr(_srvlookup, ';')) { + if ((params = strchr(_srvlookup, ';'))) { *params++ = '\0'; }