diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-10-02 15:52:47 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-10-02 15:52:47 +0200 |
commit | 39000a62024510cd62607200e6100e3cd7c05005 (patch) | |
tree | 9e92eb2f7d3d6d3921338cd4ce5196b963b27cb1 /runtime/datetime.c | |
parent | 02bb3c901d9b14e8a08b111dde151f1ed4d2d1da (diff) | |
parent | 1ec858244efc4265fa5fa4c797c006a82ca52308 (diff) | |
download | rsyslog-39000a62024510cd62607200e6100e3cd7c05005.tar.gz rsyslog-39000a62024510cd62607200e6100e3cd7c05005.tar.xz rsyslog-39000a62024510cd62607200e6100e3cd7c05005.zip |
Merge branch 'beta'
Diffstat (limited to 'runtime/datetime.c')
-rw-r--r-- | runtime/datetime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/datetime.c b/runtime/datetime.c index 47cde8c2..20ca6191 100644 --- a/runtime/datetime.c +++ b/runtime/datetime.c @@ -582,7 +582,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; } |