diff options
author | Brad King <brad.king@kitware.com> | 2014-10-08 20:37:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-10-29 20:43:32 (GMT) |
commit | 1107eb3df8ed7beca97a01dd6615dbe253aaff7f (patch) | |
tree | d3a5ad10a27f19ca24a599d5703d69c3d352d73b /Utilities | |
parent | 6db59302d07f985b9e50f8bd01a1cb7db807bd67 (diff) | |
download | CMake-1107eb3df8ed7beca97a01dd6615dbe253aaff7f.zip CMake-1107eb3df8ed7beca97a01dd6615dbe253aaff7f.tar.gz CMake-1107eb3df8ed7beca97a01dd6615dbe253aaff7f.tar.bz2 |
curl: Fix warnings on 64-bit Mac OS X build
Re-apply change from commit v2.6.0~921 (Fix warnings on 64-bit Mac OS X
build, 2007-11-05) on updated upstream curl.
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmcurl/lib/ftp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Utilities/cmcurl/lib/ftp.c b/Utilities/cmcurl/lib/ftp.c index 715afc2..1644983 100644 --- a/Utilities/cmcurl/lib/ftp.c +++ b/Utilities/cmcurl/lib/ftp.c @@ -3790,8 +3790,9 @@ CURLcode ftp_perform(struct connectdata *conn, infof(conn->data, "ftp_perform ends with SECONDARY: %d\n", *connected); - if(*dophase_done) + if(*dophase_done) { DEBUGF(infof(conn->data, "DO phase is complete1\n")); + } return result; } |