blob: 765c243e8daef4e3cc3fb63651a8d5c4e16b72d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
diff -ur boa-0.94.13/src/compat.h boa-0.94.13-gentoo/src/compat.h
--- boa-0.94.13/src/compat.h 2002-06-06 17:02:28.000000000 +1200
+++ boa-0.94.13-gentoo/src/compat.h 2003-10-18 15:21:24.000000000 +1300
@@ -117,13 +117,13 @@
#endif
#ifdef HAVE_TM_GMTOFF
-#define TIMEZONE_OFFSET(foo) foo##->tm_gmtoff
+#define TIMEZONE_OFFSET(foo) foo->tm_gmtoff
#else
#define TIMEZONE_OFFSET(foo) timezone
#endif
#ifdef HAVE_TM_ZONE
-#define TIMEZONE(foo) foo##->tm_zone
+#define TIMEZONE(foo) foo->tm_zone
#else
#define TIMEZONE(foo) *tzname
#endif
|