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.
This commit is contained in:
Brad King 2014-10-08 16:37:06 -04:00
parent 6db59302d0
commit 1107eb3df8
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}