Skip to content

Commit 2f2717d

Browse files
author
Michael Meskes
committed
tackling Vista problem - another try
1 parent e18ca9b commit 2f2717d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/interfaces/ecpg/ChangeLog

+1-1
Original file line numberDiff line numberDiff line change
@@ -2196,6 +2196,6 @@ Thu, 10 May 09:42:42 CEST 2007
21962196

21972197
Th, 17 May 2007 22:03:40 +0200
21982198

2199-
- Removed mktime() call to hopefully get rid of some compatiility
2199+
- Removed mktime() call to hopefully get rid of some compatibility
22002200
problems.
22012201
- Set ecpg version to 4.3.1.

src/interfaces/ecpg/pgtypeslib/dt_common.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/dt_common.c,v 1.37 2007/02/19 17:41:39 momjian Exp $ */
1+
/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/dt_common.c,v 1.38 2007/05/20 11:30:30 meskes Exp $ */
22

33
#include "postgres_fe.h"
44

@@ -2538,7 +2538,9 @@ DecodeDateTime(char **field, int *ftype, int nf,
25382538
if (fmask & DTK_M(DTZMOD))
25392539
return -1;
25402540

2541-
*tzp = DetermineLocalTimeZone(tm);
2541+
/* test to see if this is the reason for the error on Vista
2542+
* doesn't seem to be used anyway
2543+
* *tzp = DetermineLocalTimeZone(tm); */
25422544
}
25432545
}
25442546

0 commit comments

Comments
 (0)