diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-27 17:27:26 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-27 17:27:26 +0000 |
commit | b87d6629d0eeb6b48ed2e1be25d15fb06b78fc22 (patch) | |
tree | 0f037c71615479997492e2e5fd6c1d311b9e813e /srUtils.h | |
parent | 5dd9a6792b4266006cb8b283e6e5996bbd5026a7 (diff) | |
download | rsyslog-b87d6629d0eeb6b48ed2e1be25d15fb06b78fc22.tar.gz rsyslog-b87d6629d0eeb6b48ed2e1be25d15fb06b78fc22.tar.xz rsyslog-b87d6629d0eeb6b48ed2e1be25d15fb06b78fc22.zip |
- bugfix: queue aborted when it was shut down, DA-enabled, DA mode was just
initiated but not fully initialized (a race condition)
- bugfix: queue properties sizeOnDisk, bytesRead were persisted to disk
with wrong data type (long instead of int64) - could cause problems on
32 bit machines
- fixed a problem introduced today, on-disk queue size was now wrongly
calculated (but not in any released version)
Diffstat (limited to 'srUtils.h')
-rwxr-xr-x | srUtils.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ extern syslogName_t syslogFacNames[]; * * \param iToConv The integer to be converted. */ -rsRetVal srUtilItoA(char *pBuf, int iLenBuf, long iToConv); +rsRetVal srUtilItoA(char *pBuf, int iLenBuf, number_t iToConv); /** * A method to duplicate a string for which the length is known. |