From: florian Date: Mon, 26 Mar 2012 11:47:41 +0000 (+0000) Subject: [backfire] backport r31073 X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=ff7d65850ca13813569197e2ebc291e2e4b1e693 [backfire] backport r31073 git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@31074 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/toolchain/uClibc/patches-0.9.30.1/904-backport_dst_leap_months_fix.patch b/toolchain/uClibc/patches-0.9.30.1/904-backport_dst_leap_months_fix.patch new file mode 100644 index 000000000..1a4d47bff --- /dev/null +++ b/toolchain/uClibc/patches-0.9.30.1/904-backport_dst_leap_months_fix.patch @@ -0,0 +1,28 @@ +From: Guillaume Bourcier + +The algorithm computing daylight saving time incorrectly adds a day for +each month after January for leap years. The clock shift from/to DST can +be delayed if the last Sunday of a transition month is exactly seven +days before the first of the following month. + +This change adds a day for the February month only. + +Signed-off-by: Guillaume Bourcier +Signed-off-by: Richard Braun +--- + libc/misc/time/time.c | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/libc/misc/time/time.c b/libc/misc/time/time.c +index 19d68e1..8e2ebf1 100644 +--- a/libc/misc/time/time.c 2012-03-26 09:55:20.741069297 +0200 ++++ b/libc/misc/time/time.c 2012-03-26 09:55:57.369068289 +0200 +@@ -705,7 +705,7 @@ + ++day; + } + monlen = 31 + day_cor[r->month -1] - day_cor[r->month]; +- if (isleap && (r->month > 1)) { ++ if (isleap && (r->month == 2)) { + ++monlen; + } + /* Wweekday (0 is Sunday) of 1st of the month diff --git a/toolchain/uClibc/patches-0.9.30.2/904-backport_dst_leap_months_fix.patch b/toolchain/uClibc/patches-0.9.30.2/904-backport_dst_leap_months_fix.patch new file mode 100644 index 000000000..1a4d47bff --- /dev/null +++ b/toolchain/uClibc/patches-0.9.30.2/904-backport_dst_leap_months_fix.patch @@ -0,0 +1,28 @@ +From: Guillaume Bourcier + +The algorithm computing daylight saving time incorrectly adds a day for +each month after January for leap years. The clock shift from/to DST can +be delayed if the last Sunday of a transition month is exactly seven +days before the first of the following month. + +This change adds a day for the February month only. + +Signed-off-by: Guillaume Bourcier +Signed-off-by: Richard Braun +--- + libc/misc/time/time.c | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/libc/misc/time/time.c b/libc/misc/time/time.c +index 19d68e1..8e2ebf1 100644 +--- a/libc/misc/time/time.c 2012-03-26 09:55:20.741069297 +0200 ++++ b/libc/misc/time/time.c 2012-03-26 09:55:57.369068289 +0200 +@@ -705,7 +705,7 @@ + ++day; + } + monlen = 31 + day_cor[r->month -1] - day_cor[r->month]; +- if (isleap && (r->month > 1)) { ++ if (isleap && (r->month == 2)) { + ++monlen; + } + /* Wweekday (0 is Sunday) of 1st of the month diff --git a/toolchain/uClibc/patches-0.9.30.3/904-backport_dst_leap_months_fix.patch b/toolchain/uClibc/patches-0.9.30.3/904-backport_dst_leap_months_fix.patch new file mode 100644 index 000000000..1a4d47bff --- /dev/null +++ b/toolchain/uClibc/patches-0.9.30.3/904-backport_dst_leap_months_fix.patch @@ -0,0 +1,28 @@ +From: Guillaume Bourcier + +The algorithm computing daylight saving time incorrectly adds a day for +each month after January for leap years. The clock shift from/to DST can +be delayed if the last Sunday of a transition month is exactly seven +days before the first of the following month. + +This change adds a day for the February month only. + +Signed-off-by: Guillaume Bourcier +Signed-off-by: Richard Braun +--- + libc/misc/time/time.c | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/libc/misc/time/time.c b/libc/misc/time/time.c +index 19d68e1..8e2ebf1 100644 +--- a/libc/misc/time/time.c 2012-03-26 09:55:20.741069297 +0200 ++++ b/libc/misc/time/time.c 2012-03-26 09:55:57.369068289 +0200 +@@ -705,7 +705,7 @@ + ++day; + } + monlen = 31 + day_cor[r->month -1] - day_cor[r->month]; +- if (isleap && (r->month > 1)) { ++ if (isleap && (r->month == 2)) { + ++monlen; + } + /* Wweekday (0 is Sunday) of 1st of the month