bugfix: subseconds where not correctly extracted from a timestamp

if that timestamp did not contain any subsecond information (the
resulting string was garbagge but should have been "0", what it now is).
This commit is contained in:
Rainer Gerhards 2008-10-02 15:29:34 +02:00
parent 9812a2af8c
commit 1ec858244e
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
---------------------------------------------------------------------------
Version 3.19.12 [BETA] (rgerhards), 2008-08-25
- bugfix: subseconds where not correctly extracted from a timestamp
if that timestamp did not contain any subsecond information (the
resulting string was garbagge but should have been "0", what it
now is).
---------------------------------------------------------------------------
Version 3.19.11 [BETA] (rgerhards), 2008-08-25
This is a refresh of the beta. No beta-specific fixes have been added.

View File

@ -534,7 +534,7 @@ int formatTimestampSecFrac(struct syslogTime *ts, char* pBuf, size_t iLenBuf)
lenRet = snprintf(pBuf, iLenBuf, szFmtStr, ts->secfrac);
} else {
pBuf[0] = '0';
pBuf[1] = '1';
pBuf[1] = '\0';
lenRet = 1;
}