diff options
| author | 2025-01-17 11:28:50 -0500 | |
|---|---|---|
| committer | 2025-01-17 11:28:50 -0500 | |
| commit | cef6cabce7ae97e9edfb6821ce4393d714579866 (patch) | |
| tree | ddae72f25aa290a47308c7c955fb647cf9d759fe /src/curl | |
| parent | 86dd8affaff59cf9d2657ad1c04fd62571b9a470 (diff) | |
| download | libnaunet-cef6cabce7ae97e9edfb6821ce4393d714579866.tar.gz libnaunet-cef6cabce7ae97e9edfb6821ce4393d714579866.tar.bz2 libnaunet-cef6cabce7ae97e9edfb6821ce4393d714579866.zip | |
Incorporate libalabaster changes, Windows fixes
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/curl')
| -rw-r--r-- | src/curl/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/curl/http.c b/src/curl/http.c index d040f53..ad2a156 100644 --- a/src/curl/http.c +++ b/src/curl/http.c @@ -57,7 +57,7 @@ static void http_handle_events(void *userdata, struct nn_curl *curl) http->callback(http->userdata, NNWT_HTTP_ERROR, NULL, &http->status_code); return; } - nn_curl_set_url(curl, al_str_cr(redirect_url)); + nn_curl_set_url(curl, &al_str_cr(redirect_url)); http->status_code = -1L; http->content_length = -1L; |