From 15755b3fd8744e1ff7d2cda5f2db9477a84e5c88 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 1 Feb 2000 23:52:11 +0000 Subject: Adjusted to use the new Transfer() instead of the old Download() --- lib/dict.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'lib/dict.c') diff --git a/lib/dict.c b/lib/dict.c index e26437022..99abf49f6 100644 --- a/lib/dict.c +++ b/lib/dict.c @@ -162,7 +162,8 @@ UrgError dict(struct UrlData *data, char *path, long *bytecount) word ); - result = Download(data, data->firstsocket, -1, FALSE, bytecount); + result = Transfer(data, data->firstsocket, -1, FALSE, bytecount, + -1, NULL); /* no upload */ if(result) return result; @@ -209,7 +210,8 @@ UrgError dict(struct UrlData *data, char *path, long *bytecount) word ); - result = Download(data, data->firstsocket, -1, FALSE, bytecount); + result = Transfer(data, data->firstsocket, -1, FALSE, bytecount, + -1, NULL); /* no upload */ if(result) return result; @@ -232,7 +234,8 @@ UrgError dict(struct UrlData *data, char *path, long *bytecount) "QUIT\n", ppath); - result = Download(data, data->firstsocket, -1, FALSE, bytecount); + result = Transfer(data, data->firstsocket, -1, FALSE, bytecount, + -1, NULL); if(result) return result; -- cgit v1.2.3