aboutsummaryrefslogtreecommitdiff
path: root/lib/transfer.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-11-24 10:22:46 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-11-24 10:22:46 +0000
commit74e5beab9dbeb0e893754b8c21679527b5b7e178 (patch)
tree1fcd900435ec3ee95ba7ae0b0d0ed339ad1aacf1 /lib/transfer.c
parentb41765f4416b3bdd05694073ae58b8d5a003ec1b (diff)
Doug Kaufman's set of patches to make curl build fine on DJGPP again using
configure.
Diffstat (limited to 'lib/transfer.c')
-rw-r--r--lib/transfer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index 11a8f8463..f84594a9e 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -214,7 +214,7 @@ CURLcode Curl_readrewind(struct connectdata *conn)
if(data->set.ioctl) {
curlioerr err;
- err = data->set.ioctl(data, CURLIOCMD_RESTARTREAD,
+ err = (data->set.ioctl) (data, CURLIOCMD_RESTARTREAD,
data->set.ioctl_client);
infof(data, "the ioctl callback returned %d\n", (int)err);