summaryrefslogtreecommitdiff
path: root/lib/pop3.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2016-03-19 17:15:53 +0000
committerSteve Holme <steve_holme@hotmail.com>2016-03-19 17:15:53 +0000
commitc142e73142e377f9bcd75fed0a558ce30323e98c (patch)
tree3c26f8a4139d9cd87491b3b4b1810faf3e6a2e4b /lib/pop3.c
parent4ff2fbd1d5d743556627816f4727c499c480d633 (diff)
downloadgnurl-c142e73142e377f9bcd75fed0a558ce30323e98c.tar.gz
gnurl-c142e73142e377f9bcd75fed0a558ce30323e98c.tar.bz2
gnurl-c142e73142e377f9bcd75fed0a558ce30323e98c.zip
ftp/imap/pop3/smtp: Fixed compilation warning when /Wall enabled
warning C4706: assignment within conditional expression
Diffstat (limited to 'lib/pop3.c')
-rw-r--r--lib/pop3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pop3.c b/lib/pop3.c
index cb53b7445..823761d2e 100644
--- a/lib/pop3.c
+++ b/lib/pop3.c
@@ -753,8 +753,8 @@ static CURLcode pop3_state_capa_resp(struct connectdata *conn, int pop3code,
wordlen++;
/* Test the word for a matching authentication mechanism */
- if((mechbit = Curl_sasl_decode_mech(line, wordlen, &llen)) &&
- llen == wordlen)
+ mechbit = Curl_sasl_decode_mech(line, wordlen, &llen);
+ if(mechbit && llen == wordlen)
pop3c->sasl.authmechs |= mechbit;
line += wordlen;