head 1.3; access; symbols OPENPKG_E1_MP_HEAD:1.3 OPENPKG_E1_MP:1.3 OPENPKG_E1_MP_2_STABLE:1.2 OPENPKG_E1_FP:1.2 OPENPKG_2_STABLE_20061018:1.2 OPENPKG_2_STABLE:1.2.0.10 OPENPKG_2_STABLE_BP:1.2 OPENPKG_2_5_SOLID:1.2.0.8 OPENPKG_2_5_SOLID_BP:1.2 OPENPKG_2_4_RELEASE:1.2 OPENPKG_2_4_SOLID:1.2.0.6 OPENPKG_2_4_SOLID_BP:1.2 OPENPKG_2_3_RELEASE:1.2 OPENPKG_2_3_SOLID:1.2.0.4 OPENPKG_2_3_SOLID_BP:1.2 OPENPKG_2_2_RELEASE:1.2 OPENPKG_2_2_SOLID:1.2.0.2 OPENPKG_2_2_SOLID_BP:1.2 OPENPKG_2_1_RELEASE:1.1 OPENPKG_2_1_SOLID:1.1.0.2 OPENPKG_2_1_SOLID_BP:1.1; locks; strict; comment @# @; 1.3 date 2006.12.23.10.20.16; author rse; state Exp; branches; next 1.2; commitid eIbxLn4hxNJFkDZr; 1.2 date 2004.08.06.07.06.01; author rse; state dead; branches; next 1.1; 1.1 date 2004.05.06.18.26.26; author rse; state Exp; branches; next ; desc @@ 1.3 log @upgrading package: syslog-ng 2.0.0 -> 2.0.1 @ text @Index: src/dnscache.c --- src/dnscache.c.orig 2006-11-28 15:40:13 +0100 +++ src/dnscache.c 2006-12-23 11:14:36 +0100 @@@@ -33,6 +33,10 @@@@ #include #include +#if defined(__FreeBSD__) && !defined(s6_addr32) +#define s6_addr32 __u6_addr.__u6_addr32 +#endif + typedef struct _DNSCacheEntry DNSCacheEntry; typedef struct _DNSCacheKey DNSCacheKey; @ 1.2 log @upgrading package: syslog-ng 1.6.4 -> 1.6.5 @ text @d1 14 a14 14 Index: src/macros.c --- src/macros.c.orig 2004-05-06 09:37:10.000000000 +0200 +++ src/macros.c 2004-05-06 20:24:05.000000000 +0200 @@@@ -115,6 +115,10 @@@@ (timezone < 0 ? -timezone : timezone) / 3600, (timezone % 3600) / 60); #else + time_t t; + struct tm *tm; + t = time(NULL); + tm = localtime(&t); length = strftime(dest, left -1, "%z", tm); #endif return length; @ 1.1 log @upgrading package: syslog-ng 1.6.2 -> 1.6.3 @ text @@