mirror of
https://github.com/curl/curl.git
synced 2026-07-07 10:37:15 +03:00
CURLOPT_SEEKDATA.3: fix variable name
Closes https://github.com/curl/curl/pull/4118
This commit is contained in:
parent
fea0120312
commit
fdcb0f40c3
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ HTTP, FTP, SFTP
|
|||
static int seek_cb(void *userp, curl_off_t offset, int origin)
|
||||
{
|
||||
struct data *d = (struct data *)userp;
|
||||
lseek(our_fd, offset, origin);
|
||||
lseek(d->our_fd, offset, origin);
|
||||
return CURL_SEEKFUNC_OK;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue