22 lines
616 B
Diff
22 lines
616 B
Diff
Index: boa-0.94.14rc21/src/util.c
|
|
===================================================================
|
|
--- boa-0.94.14rc21.orig/src/util.c 2005-02-22 15:11:29.000000000 +0100
|
|
+++ boa-0.94.14rc21/src/util.c 2008-06-11 08:45:10.000000000 +0200
|
|
@@ -151,14 +151,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-- = ' ';
|