Skip to content
Snippets Groups Projects
Commit 4698e033 authored by Aleksey Vasenev's avatar Aleksey Vasenev Committed by Steve Lhomme
Browse files

sftp: fix seek for large files on 32-bit OS

parent 8e6d1b66
No related branches found
No related tags found
1 merge request!5622sftp: fix seek for large files on 32-bit OS
Pipeline #485459 passed with stage
in 15 minutes and 41 seconds
......@@ -609,7 +609,7 @@ static int Seek( stream_t* p_access, uint64_t i_pos )
{
access_sys_t *sys = p_access->p_sys;
libssh2_sftp_seek( sys->file, i_pos );
libssh2_sftp_seek64( sys->file, i_pos );
return VLC_SUCCESS;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment