diff options
author | Steven Barth <steven@midlink.org> | 2009-06-20 07:24:09 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2009-06-20 07:24:09 +0000 |
commit | a90206c089832d54b1f5ffde940af2e07e10fed3 (patch) | |
tree | d007893342514a0c97e7332358dc1d1a7e449c57 /libs/sgi-webuci/boa-patches/100-no_tz.patch | |
parent | 7355eccc2114b17754a028cb98fc3eee18a232b6 (diff) |
Drop webuci (obsolete)
Diffstat (limited to 'libs/sgi-webuci/boa-patches/100-no_tz.patch')
-rw-r--r-- | libs/sgi-webuci/boa-patches/100-no_tz.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/libs/sgi-webuci/boa-patches/100-no_tz.patch b/libs/sgi-webuci/boa-patches/100-no_tz.patch deleted file mode 100644 index 639677eed..000000000 --- a/libs/sgi-webuci/boa-patches/100-no_tz.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -urN boa-0.94.13/src/util.c boa/src/util.c ---- boa-0.94.13/src/util.c 2002-07-08 01:22:18.000000000 +0200 -+++ boa/src/util.c 2008-04-25 21:56:20.000000000 +0200 -@@ -95,14 +95,9 @@ - static char buf[30]; - int time_offset; - -- if (use_localtime) { -- t = localtime(¤t_time); -- time_offset = TIMEZONE_OFFSET(t); -- } else { -- t = gmtime(¤t_time); -- time_offset = 0; -- } -- -+ t = gmtime(¤t_time); -+ time_offset = 0; -+ - p = buf + 29; - *p-- = '\0'; - *p-- = ' '; - |