mirror of https://git.FreeBSD.org/ports.git
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
--- src/belle_sip_headers_impl.cc.orig 2025-03-26 20:44:32 UTC
|
|
+++ src/belle_sip_headers_impl.cc
|
|
@@ -2084,11 +2084,6 @@ BELLESIP_EXPORT time_t belle_sip_header_date_get_time(
|
|
char tmp2[17] = {0};
|
|
int i, j;
|
|
time_t seconds;
|
|
-#if defined(BELLE_SIP_WINDOWS_UNIVERSAL) || defined(BELLE_SIP_MSC_VER_GREATER_19)
|
|
- long adjust_timezone;
|
|
-#else
|
|
- time_t adjust_timezone;
|
|
-#endif
|
|
|
|
/* time headers are in GMT as spec says */
|
|
sscanf(obj->date, "%3c,%d %16s %d %d:%d:%d", tmp1, &ret.tm_mday, tmp2, &ret.tm_year, &ret.tm_hour, &ret.tm_min,
|
|
@@ -2110,25 +2105,11 @@ success:
|
|
success:
|
|
ret.tm_isdst = 0;
|
|
|
|
-#if TARGET_IPHONE_SIMULATOR
|
|
- /* 'timezone' is buggy on iOS simulator, use the timegm() function to convert to UTC timestamp
|
|
- and discard the adjust timezone value */
|
|
- seconds = timegm(&ret);
|
|
- adjust_timezone = 0;
|
|
-#else
|
|
- seconds = mktime(&ret);
|
|
-#if defined(BELLE_SIP_WINDOWS_UNIVERSAL) || defined(BELLE_SIP_MSC_VER_GREATER_19)
|
|
- _get_timezone(&adjust_timezone);
|
|
-#else
|
|
- adjust_timezone = timezone;
|
|
-#endif
|
|
-#endif
|
|
-
|
|
if (seconds == (time_t)-1) {
|
|
- belle_sip_error("mktime() failed: %s", strerror(errno));
|
|
+ belle_sip_error("timegm() failed: %s", strerror(errno));
|
|
return (time_t)-1;
|
|
}
|
|
- return seconds - (time_t)adjust_timezone;
|
|
+ return seconds;
|
|
}
|
|
|
|
BELLESIP_EXPORT void belle_sip_header_date_set_time(belle_sip_header_date_t *obj, const time_t *utc_time) {
|