mirror of
https://github.com/curl/curl.git
synced 2026-04-15 00:41:41 +03:00
OS400: fix build
- Fix failed build due to missing parameter.
Follow-up to 8c9946d3 from yesterday.
Closes https://github.com/curl/curl/pull/19494
This commit is contained in:
parent
c6eb9bb3dc
commit
64c03bbdf2
1 changed files with 1 additions and 1 deletions
|
|
@ -361,7 +361,7 @@ curl_slist_append_ccsid(struct curl_slist *list,
|
|||
if(!data)
|
||||
return curl_slist_append(list, data);
|
||||
|
||||
s = dynconvert(ASCII_CCSID, data, -1, ccsid);
|
||||
s = dynconvert(ASCII_CCSID, data, -1, ccsid, NULL);
|
||||
|
||||
if(!s)
|
||||
return (struct curl_slist *) NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue