blob: 862465c2c289a83c4e0a6305b67db2dc6f0b144a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- third_party/webrtc/base/httpcommon.cc.orig 2014-10-10 09:16:13 UTC
+++ third_party/webrtc/base/httpcommon.cc
@@ -382,7 +382,7 @@
gmt = non_gmt + kTimeZoneOffsets[zindex] * 60 * 60;
}
// TODO: Android should support timezone, see b/2441195
-#if defined(WEBRTC_MAC) && !defined(WEBRTC_IOS) || defined(WEBRTC_ANDROID) || defined(BSD)
+#if defined(WEBRTC_MAC) && !defined(WEBRTC_IOS) || defined(WEBRTC_ANDROID) || defined(WEBRTC_BSD)
tm *tm_for_timezone = localtime(&gmt);
*seconds = gmt + tm_for_timezone->tm_gmtoff;
#else
|