8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 08:43:03 +01:00

Fixed error from last check-in.

This commit is contained in:
eku 2002-08-16 13:21:46 +00:00
parent 6d6da6d745
commit 7a9bf05c13

View File

@ -1958,7 +1958,7 @@ void API_ROUTINE gds__log(TEXT * text, ...)
if ((file = ib_fopen(name, FOPEN_APPEND_TYPE)) != NULL)
{
ib_fprintf(file, "%s%s\t%.25s\t", ISC_get_host(name, MAXPATHLEN),
gdslogid, ctime(now));
gdslogid, ctime(&now));
VA_START(ptr, text);
ib_vfprintf(file, text, ptr);
ib_fprintf(file, "\n\n");