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/ftp.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/ftp.c')
-rw-r--r-- | lib/ftp.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -155,8 +155,9 @@ static CURLcode ftp_dophase_done(struct connectdata *conn, bool connected); /* easy-to-use macro: */ -#define PPSENDF(x,y,z) if((result = Curl_pp_sendf(x,y,z))) \ - return result +#define PPSENDF(x,y,z) result = Curl_pp_sendf(x,y,z); \ + if(result) \ + return result /* |