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

smb: rename variable to fix shadowing warning

GCC 4.6.3 on travis complains:
smb.c: In function ‘get_posix_time’:
smb.c:725:13: error: declaration of ‘time’ shadows a global declaration
[-Werror=shadow]

Fix this by renaming the variable.
This commit is contained in:
Marcel Raad 2017-07-08 23:19:36 +02:00
parent f601f42787
commit 59a0fb2439
No known key found for this signature in database
GPG Key ID: 07ADACB610D796DA

View File

@ -722,14 +722,14 @@ static CURLcode smb_connection_state(struct connectdata *conn, bool *done)
static void get_posix_time(long *_out, const void *_in) static void get_posix_time(long *_out, const void *_in)
{ {
#ifdef HAVE_LONGLONG #ifdef HAVE_LONGLONG
long long time = *(long long *) _in; long long timestamp = *(long long *) _in;
#else #else
unsigned __int64 time = *(unsigned __int64 *) _in; unsigned __int64 timestamp = *(unsigned __int64 *) _in;
#endif #endif
time -= 116444736000000000ULL; timestamp -= 116444736000000000ULL;
time /= 10000000; timestamp /= 10000000;
*_out = (long) time; *_out = (long) timestamp;
} }
static CURLcode smb_request_state(struct connectdata *conn, bool *done) static CURLcode smb_request_state(struct connectdata *conn, bool *done)