diff options
author | Steve Holme <steve_holme@hotmail.com> | 2016-03-19 17:15:53 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2016-03-19 17:15:53 +0000 |
commit | c142e73142e377f9bcd75fed0a558ce30323e98c (patch) | |
tree | 3c26f8a4139d9cd87491b3b4b1810faf3e6a2e4b /lib/imap.c | |
parent | 4ff2fbd1d5d743556627816f4727c499c480d633 (diff) | |
download | curl-c142e73142e377f9bcd75fed0a558ce30323e98c.tar.gz |
ftp/imap/pop3/smtp: Fixed compilation warning when /Wall enabled
warning C4706: assignment within conditional expression
Diffstat (limited to 'lib/imap.c')
-rw-r--r-- | lib/imap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/imap.c b/lib/imap.c index a3d2cad22..ff25e54e0 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -910,8 +910,8 @@ static CURLcode imap_state_capability_resp(struct connectdata *conn, wordlen -= 5; /* 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) imapc->sasl.authmechs |= mechbit; } |