aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-01-08 15:50:52 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-01-08 15:50:52 +0000
commit9a239edb5254fb684ec8095624d763ddeb49d063 (patch)
treef850af67c7e8891a360cb9aa800c5d6397d74fbc /lib/url.c
parentabcc5c5a82d5930f06eeb75f4a150b7b3cab6a74 (diff)
updated to use the modified share-types
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/url.c b/lib/url.c
index 7f2aae8a5..d085f3ce4 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -101,6 +101,7 @@
#include "strequal.h"
#include "escape.h"
#include "strtok.h"
+#include "share.h"
/* And now for the protocols */
#include "ftp.h"
@@ -1071,8 +1072,8 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...)
case CURLOPT_SHARE:
{
- curl_share *set;
- set = va_arg(param, curl_share *);
+ struct Curl_share *set;
+ set = va_arg(param, struct Curl_share *);
if(data->share)
data->share->dirty--;