diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-07-03 10:33:35 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-07-03 10:33:35 +0200 |
commit | f03b26b550dc7a08f96753c47e8fb0673f5338ec (patch) | |
tree | d9d6215894f8370bb03a1d7ec54871b979f30c4f /runtime/datetime.c | |
parent | b37a1eb0f8422102c11c597f15139d64c2d51c13 (diff) | |
download | rsyslog-f03b26b550dc7a08f96753c47e8fb0673f5338ec.tar.gz rsyslog-f03b26b550dc7a08f96753c47e8fb0673f5338ec.tar.xz rsyslog-f03b26b550dc7a08f96753c47e8fb0673f5338ec.zip |
bugfix: missing initialization during timestamp creationv4.5.0
This could lead to timestamps written in the wrong format, but not to
an abort.
Diffstat (limited to 'runtime/datetime.c')
-rw-r--r-- | runtime/datetime.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/datetime.c b/runtime/datetime.c index ea67eec5..2db1d3c5 100644 --- a/runtime/datetime.c +++ b/runtime/datetime.c @@ -123,6 +123,7 @@ static void getCurrTime(struct syslogTime *t, time_t *ttSeconds) t->OffsetMode = '+'; t->OffsetHour = lBias / 3600; t->OffsetMinute = lBias % 3600; + t->timeType = TIME_TYPE_RFC5424; /* we have a high precision timestamp */ } |