summaryrefslogtreecommitdiff
path: root/src/raptor_www_curl.c
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2010-01-09 23:25:48 -0800
committerDave Beckett <dave@dajobe.org>2010-01-09 23:25:48 -0800
commit8efb1aabbb2f29b38556cfe47fdd7c8b9b785dc4 (patch)
tree5526a8b2c0cf25f1bade71f95f7f0624599a2543 /src/raptor_www_curl.c
parent906fa827ce37908b5bd54c01dec94d47e168ade2 (diff)
downloadraptor-8efb1aabbb2f29b38556cfe47fdd7c8b9b785dc4.tar.gz
Remove _v2 suffix from raptor_uri constructors
Diffstat (limited to 'src/raptor_www_curl.c')
-rw-r--r--src/raptor_www_curl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raptor_www_curl.c b/src/raptor_www_curl.c
index 0b5abee5..4191420d 100644
--- a/src/raptor_www_curl.c
+++ b/src/raptor_www_curl.c
@@ -55,7 +55,7 @@ raptor_www_curl_update_status(raptor_www* www)
if(curl_easy_getinfo(www->curl_handle, CURLINFO_EFFECTIVE_URL,
&final_uri) == CURLE_OK) {
- www->final_uri = raptor_new_uri_v2(www->world, (const unsigned char*)final_uri);
+ www->final_uri = raptor_new_uri(www->world, (const unsigned char*)final_uri);
if(www->final_uri_handler)
www->final_uri_handler(www, www->final_uri_userdata, www->final_uri);
}