diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-04-16 23:43:04 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-04-16 23:43:04 +0200 |
commit | c0111460b0689d74731cc56ff019cc869a0d16a8 (patch) | |
tree | 037a368cf8e5f50868320fa214d9915d7df4b924 /lib/transfer.h | |
parent | 93981bb9b5026f88ed4dec5d790bb7c84265210a (diff) | |
download | curl-c0111460b0689d74731cc56ff019cc869a0d16a8.tar.gz |
Curl_setup_transfer: no longer returns anything
This function could only return CURLE_OK and by changing it to
a void instead, we can simplify code all over.
Diffstat (limited to 'lib/transfer.h')
-rw-r--r-- | lib/transfer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/transfer.h b/lib/transfer.h index 4c2bc9e02..790e1e3ef 100644 --- a/lib/transfer.h +++ b/lib/transfer.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -49,7 +49,7 @@ CURLcode Curl_reconnect_request(struct connectdata **connp); CURLcode Curl_retry_request(struct connectdata *conn, char **url); /* This sets up a forthcoming transfer */ -CURLcode +void Curl_setup_transfer (struct connectdata *data, int sockindex, /* socket index to read from or -1 */ curl_off_t size, /* -1 if unknown at this point */ |