diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-03-09 15:17:09 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-03-09 15:17:09 +0000 |
commit | 1efec6572e461216d202d198bd088f455fa6e759 (patch) | |
tree | ccac4fee8fd3bbaf8d60e08159e6664f983aa563 /lib | |
parent | 781dd7a9bf3af985f16afd69e3d44abced5c49d5 (diff) |
curl_transfer became Curl_perform() to better match the public name and
use the correct prefix
Diffstat (limited to 'lib')
-rw-r--r-- | lib/transfer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/transfer.h b/lib/transfer.h index ef3d6da02..8237bec2b 100644 --- a/lib/transfer.h +++ b/lib/transfer.h @@ -22,8 +22,9 @@ * * $Id$ *****************************************************************************/ -CURLcode curl_transfer(CURL *curl); +CURLcode Curl_perform(CURL *curl); +/* This sets up a forthcoming transfer */ CURLcode Curl_Transfer (struct connectdata *data, int sockfd, /* socket to read from or -1 */ |