aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-10-21 23:31:45 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-10-21 23:31:45 +0000
commite0eb805a4311152d02781786e44ecfc5345a4ef3 (patch)
tree8cc114138ba83aaac38ff47c2f386bb49b8c0600 /channels
parent302005b303a417b90ae858a99239921b9d4d77d5 (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.6.1@151441 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index cc43e7320..b335362eb 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';
}