From afcf63b43313b7144b9cb67d159122ab2c0215d2 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 4 Jun 2009 00:36:34 +0200 Subject: [PATCH] use the correct #if condition for strtoll(), pointed out in bug report --- src/libssh2_priv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libssh2_priv.h b/src/libssh2_priv.h index 4e2b08e2..37e3f26b 100644 --- a/src/libssh2_priv.h +++ b/src/libssh2_priv.h @@ -881,7 +881,7 @@ struct _LIBSSH2_SESSION unsigned char scpRecv_response[LIBSSH2_SCP_RESPONSE_BUFLEN]; unsigned long scpRecv_response_len; long scpRecv_mode; -#if defined(HAVE_LONGLONG) && defined(strtoll) +#if defined(HAVE_LONGLONG) && defined(HAVE_STRTOLL) /* we have the type and we can parse such numbers */ long long scpRecv_size; #define scpsize_strtol strtoll