changeset 1140:ae818127a725

Remove a faulty time tweak from Postgres serialization
author Adam Chlipala <adamc@hcoop.net>
date Sat, 30 Jan 2010 13:39:39 -0500
parents 398ed1b89ee7
children f6cb1cb2d7a8
files src/c/urweb.c
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/c/urweb.c	Sat Jan 30 12:00:08 2010 -0500
+++ b/src/c/urweb.c	Sat Jan 30 13:39:39 2010 -0500
@@ -2416,7 +2416,6 @@
 
   if (localtime_r(&t, &stm)) {
     s = uw_malloc(ctx, TIMES_MAX);
-    --stm.tm_hour;
     len = strftime(s, TIMES_MAX, TIME_FMT, &stm);
     r = uw_malloc(ctx, len + 14);
     sprintf(r, "'%s'::timestamp", s);