diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2007-11-24 23:18:21 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2007-11-24 23:18:21 +0000 | 
| commit | 162c039e9d0b19bd98244e35e6265b2ff978c085 (patch) | |
| tree | d84fb75ecd04283d4d060289a35b77a1af8e6d4d /lib/url.c | |
| parent | 13648f8ccda6f99674ac407640474634e856804c (diff) | |
reqdata doesn't exist anymore and the path moved to the UrlState struct
Diffstat (limited to 'lib/url.c')
| -rw-r--r-- | lib/url.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -2249,7 +2249,7 @@ static void Curl_printPipeline(struct curl_llist *pipeline)    curr = pipeline->head;    while(curr) {      struct SessionHandle *data = (struct SessionHandle *) curr->ptr; -    infof(data, "Handle in pipeline: %s\n", data->reqdata.path); +    infof(data, "Handle in pipeline: %s\n", data->state.path);      curr = curr->next;    }  } | 
