diff options
author | Michael Meskes <meskes@postgresql.org> | 2007-05-20 11:30:30 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2007-05-20 11:30:30 +0000 |
commit | 2f2717d14ff1c401a125d9cd3e2e5fcf71d8b9bb (patch) | |
tree | f32e2cb2cd4ceabdf3894aa80aaac69b83b1fa5f | |
parent | e18ca9bbaaaf4a7a30062bc4cf1dcdbef3bcacb7 (diff) | |
download | postgresql-2f2717d14ff1c401a125d9cd3e2e5fcf71d8b9bb.tar.gz postgresql-2f2717d14ff1c401a125d9cd3e2e5fcf71d8b9bb.zip |
tackling Vista problem - another try
-rw-r--r-- | src/interfaces/ecpg/ChangeLog | 2 | ||||
-rw-r--r-- | src/interfaces/ecpg/pgtypeslib/dt_common.c | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/ChangeLog b/src/interfaces/ecpg/ChangeLog index a2ae3e9d4a2..32ba47d760d 100644 --- a/src/interfaces/ecpg/ChangeLog +++ b/src/interfaces/ecpg/ChangeLog @@ -2196,6 +2196,6 @@ Thu, 10 May 09:42:42 CEST 2007 Th, 17 May 2007 22:03:40 +0200 - - Removed mktime() call to hopefully get rid of some compatiility + - Removed mktime() call to hopefully get rid of some compatibility problems. - Set ecpg version to 4.3.1. diff --git a/src/interfaces/ecpg/pgtypeslib/dt_common.c b/src/interfaces/ecpg/pgtypeslib/dt_common.c index 8fb0818add4..8bdc64b0001 100644 --- a/src/interfaces/ecpg/pgtypeslib/dt_common.c +++ b/src/interfaces/ecpg/pgtypeslib/dt_common.c @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/dt_common.c,v 1.37 2007/02/19 17:41:39 momjian Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/dt_common.c,v 1.38 2007/05/20 11:30:30 meskes Exp $ */ #include "postgres_fe.h" @@ -2538,7 +2538,9 @@ DecodeDateTime(char **field, int *ftype, int nf, if (fmask & DTK_M(DTZMOD)) return -1; - *tzp = DetermineLocalTimeZone(tm); + /* test to see if this is the reason for the error on Vista + * doesn't seem to be used anyway + * *tzp = DetermineLocalTimeZone(tm); */ } } |