mirror of
https://github.com/moparisthebest/curl
synced 2025-02-28 01:11:47 -05:00
test1541: ignore the curl_off_t variable type name comparison
... the sizes and the formatting strings are what's really important and avoids problems with int64_t vs "long long". Bug: https://curl.haxx.se/mail/lib-2017-04/0019.html
This commit is contained in:
parent
65154588f6
commit
8761a40fd9
@ -47,7 +47,9 @@ int test(char *URL)
|
||||
socket_h = "Yes";
|
||||
#endif
|
||||
snprintf(detect, sizeof(detect),
|
||||
#ifdef CHECK_CURL_OFF_T
|
||||
"CURL_TYPEOF_CURL_OFF_T: %s\n"
|
||||
#endif
|
||||
"CURL_FORMAT_CURL_OFF_T: %s\n"
|
||||
"CURL_FORMAT_CURL_OFF_TU: %s\n"
|
||||
"CURL_SUFFIX_CURL_OFF_T: %s\n"
|
||||
@ -58,7 +60,9 @@ int test(char *URL)
|
||||
"CURL_PULL_SYS_TYPES_H: %s\n"
|
||||
"CURL_PULL_SYS_SOCKET_H: %s\n"
|
||||
|
||||
#ifdef CHECK_CURL_OFF_T
|
||||
, STRING(CURL_TYPEOF_CURL_OFF_T)
|
||||
#endif
|
||||
, CURL_FORMAT_CURL_OFF_T
|
||||
, CURL_FORMAT_CURL_OFF_TU
|
||||
, STRING(CURL_SUFFIX_CURL_OFF_T)
|
||||
@ -76,7 +80,9 @@ int test(char *URL)
|
||||
ssocket_h = "Yes";
|
||||
#endif
|
||||
snprintf(syst, sizeof(syst),
|
||||
#ifdef CHECK_CURL_OFF_T
|
||||
"CURL_TYPEOF_CURL_OFF_T: %s\n"
|
||||
#endif
|
||||
"CURL_FORMAT_CURL_OFF_T: %s\n"
|
||||
"CURL_FORMAT_CURL_OFF_TU: %s\n"
|
||||
"CURL_SUFFIX_CURL_OFF_T: %s\n"
|
||||
@ -87,7 +93,9 @@ int test(char *URL)
|
||||
"CURL_PULL_SYS_TYPES_H: %s\n"
|
||||
"CURL_PULL_SYS_SOCKET_H: %s\n"
|
||||
|
||||
#ifdef CHECK_CURL_OFF_T
|
||||
, STRING(CURLSYS_TYPEOF_CURL_OFF_T)
|
||||
#endif
|
||||
, CURLSYS_FORMAT_CURL_OFF_T
|
||||
, CURLSYS_FORMAT_CURL_OFF_TU
|
||||
, STRING(CURLSYS_SUFFIX_CURL_OFF_T)
|
||||
|
Loading…
x
Reference in New Issue
Block a user