This commit is contained in:
brianb 2004-02-15 13:35:05 +00:00
parent 181de01e4f
commit ee53cdd230
2 changed files with 14 additions and 9 deletions

View File

@ -1,5 +1,6 @@
Sun Feb 15 07:37:19 EST 2004 Brian Bruns <brian@bruns.com>
* src/gmdb2/debug.c: move declarations to top of function, fixes bug 675022
* src/gmdb2/debug.c: merge patch for bug #688655, check negative values on datetime
Sat Feb 14 14:41:00 EST 2004 Brian Bruns <brian@bruns.com>
* include/.cvsignore: add mdbver.h

View File

@ -1023,12 +1023,12 @@ static int trim_trailing_zeros(char * buff, int n)
char *mdb_col_to_string(MdbHandle *mdb, unsigned char *buf, int start, int datatype, int size)
{
/* FIX ME -- not thread safe */
static char text[MDB_BIND_SIZE];
time_t t;
int i, n;
float tf;
double td;
/* FIX ME -- not thread safe */
static char text[MDB_BIND_SIZE];
time_t t;
int i, n;
float tf;
double td;
switch (datatype) {
case MDB_BOOL:
@ -1087,9 +1087,13 @@ double td;
return text;
break;
case MDB_SDATETIME:
t = (long int)((mdb_get_double(buf, start) - 25569.0) * 86400.0);
strftime(text, MDB_BIND_SIZE, date_fmt,
(struct tm*)gmtime(&t));
td = mdb_get_double(mdb, start);
if (td > 1) {
t = (long int)((td - 25569.0) * 86400.0);
} else {
t = (long int)(td * 86400.0);
}
strftime(text, MDB_BIND_SIZE, date_fmt, (struct tm*)gmtime(&t));
return text;
break;