aboutsummaryrefslogtreecommitdiff
path: root/lib/dict.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-01-17 13:23:01 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-01-17 13:23:01 +0000
commitae0a6835bdd6c54e56ce16b7a2727ada3adcccaf (patch)
treeb65aef21c630e63714f39045789628c5c7d31f41 /lib/dict.c
parentf2f11be8ba14006fb47e48eaff5f471b3a737b40 (diff)
Transfer is now Curl_Tranfer() and transfer.h is used instead of highlevel.h
and download.h
Diffstat (limited to 'lib/dict.c')
-rw-r--r--lib/dict.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/dict.c b/lib/dict.c
index 2e3dd7ab0..6c4a60857 100644
--- a/lib/dict.c
+++ b/lib/dict.c
@@ -71,7 +71,7 @@
#include "urldata.h"
#include <curl/curl.h>
-#include "download.h"
+#include "transfer.h"
#include "sendf.h"
#include "progress.h"
@@ -154,7 +154,7 @@ CURLcode Curl_dict(struct connectdata *conn)
word
);
- result = Transfer(conn, data->firstsocket, -1, FALSE, bytecount,
+ result = Curl_Transfer(conn, data->firstsocket, -1, FALSE, bytecount,
-1, NULL); /* no upload */
if(result)
@@ -202,7 +202,7 @@ CURLcode Curl_dict(struct connectdata *conn)
word
);
- result = Transfer(conn, data->firstsocket, -1, FALSE, bytecount,
+ result = Curl_Transfer(conn, data->firstsocket, -1, FALSE, bytecount,
-1, NULL); /* no upload */
if(result)
@@ -226,7 +226,7 @@ CURLcode Curl_dict(struct connectdata *conn)
"QUIT\n",
ppath);
- result = Transfer(conn, data->firstsocket, -1, FALSE, bytecount,
+ result = Curl_Transfer(conn, data->firstsocket, -1, FALSE, bytecount,
-1, NULL);
if(result)