1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

libssh2_sftp_seek2 was just renamed to libssh2_sftp_seek64 ...

This commit is contained in:
Daniel Stenberg 2008-12-22 13:21:23 +00:00
parent 7ffe62d901
commit eab8c0d754
2 changed files with 11 additions and 4 deletions

View File

@ -435,8 +435,8 @@ static CURLcode ssh_getworkingpath(struct connectdata *conn,
* Earlier libssh2 versions didn't have the ability to seek to 64bit positions * Earlier libssh2 versions didn't have the ability to seek to 64bit positions
* with 32bit size_t. * with 32bit size_t.
*/ */
#ifdef HAVE_LIBSSH2_SFTP_SEEK2 #ifdef HAVE_LIBSSH2_SFTP_SEEK64
#define SFTP_SEEK(x,y) libssh2_sftp_seek2(x, (libssh2_uint64_t)y) #define SFTP_SEEK(x,y) libssh2_sftp_seek64(x, (libssh2_uint64_t)y)
#else #else
#define SFTP_SEEK(x,y) libssh2_sftp_seek(x, y) #define SFTP_SEEK(x,y) libssh2_sftp_seek(x, y)
#endif #endif

View File

@ -35,12 +35,19 @@
for snapshots done during the 0.19 days as well as things released once for snapshots done during the 0.19 days as well as things released once
it was bumped to 1.0 */ it was bumped to 1.0 */
# define HAVE_LIBSSH2_SESSION_BLOCK_DIRECTIONS 1 # define HAVE_LIBSSH2_SESSION_BLOCK_DIRECTIONS 1
# define HAVE_LIBSSH2_SFTP_SEEK2 1
#else #else
# undef HAVE_LIBSSH2_SESSION_BLOCK_DIRECTIONS # undef HAVE_LIBSSH2_SESSION_BLOCK_DIRECTIONS
# undef HAVE_LIBSSH2_SFTP_SEEK2 1
#endif #endif
#if (LIBSSH2_VERSION_NUM >= 0x010000)
/* libssh2_sftp_seek64() has only ever been provided by libssh2 1.0 or
later */
# define HAVE_LIBSSH2_SFTP_SEEK64 1
#else
# undef HAVE_LIBSSH2_SFTP_SEEK64 1
#endif
extern const struct Curl_handler Curl_handler_scp; extern const struct Curl_handler Curl_handler_scp;
extern const struct Curl_handler Curl_handler_sftp; extern const struct Curl_handler Curl_handler_sftp;