mirror of
https://github.com/curl/curl.git
synced 2026-05-17 17:26:19 +03:00
gmtime: remove define
It turns out some systems rely on the gmtime or gmtime_r to be defined already in the system headers and thus my "precaution" redefining of them only caused trouble. They are now removed.
This commit is contained in:
parent
c2dff28c41
commit
f19ace8d33
2 changed files with 2 additions and 5 deletions
|
|
@ -529,9 +529,9 @@ CURLcode Curl_gmtime(time_t intime, struct tm *store)
|
|||
const struct tm *tm;
|
||||
#ifdef HAVE_GMTIME_R
|
||||
/* thread-safe version */
|
||||
tm = (struct tm *)(gmtime_r)(&intime, store);
|
||||
tm = (struct tm *)gmtime_r(&intime, store);
|
||||
#else
|
||||
tm = (gmtime)(&intime);
|
||||
tm = gmtime(&intime);
|
||||
if(tm)
|
||||
*store = *tm; /* copy the pointed struct to the local copy */
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -488,8 +488,5 @@ typedef int sig_atomic_t;
|
|||
|
||||
#define ZERO_NULL 0
|
||||
|
||||
#define gmtime(x) do_not_use_gmtime_use_Curl_gmtime()
|
||||
#define gmtime_r(x,y) do_not_use_gmtime_r_use_Curl_gmtime()
|
||||
|
||||
#endif /* __SETUP_ONCE_H */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue