aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-12-18 16:51:02 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-12-18 16:51:02 +0000
commitefbe930a69b83b88b16b9935301a76b6368dda03 (patch)
treedcbf8a70377f7bc1787993f2b981a9de28ed5ec7 /lib
parent747f87f61e2278381cb9da3b9b19b9ca39a0582b (diff)
CURLE_HTTP_NOT_FOUND => CURLE_HTTP_RETURNED_ERROR
Diffstat (limited to 'lib')
-rw-r--r--lib/transfer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index db59ca5ad..eca2cad7b 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -481,7 +481,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
here is the check for that: */
/* serious error, go home! */
failf (data, "The requested file was not found");
- return CURLE_HTTP_NOT_FOUND;
+ return CURLE_HTTP_RETURNED_ERROR;
}
if(k->httpversion == 10)