From b87d6629d0eeb6b48ed2e1be25d15fb06b78fc22 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Wed, 27 Feb 2008 17:27:26 +0000 Subject: - 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) --- srUtils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'srUtils.c') diff --git a/srUtils.c b/srUtils.c index d20f1174..b871861b 100755 --- a/srUtils.c +++ b/srUtils.c @@ -107,7 +107,7 @@ syslogName_t syslogFacNames[] = { * public members * * ################################################################# */ -rsRetVal srUtilItoA(char *pBuf, int iLenBuf, long iToConv) +rsRetVal srUtilItoA(char *pBuf, int iLenBuf, number_t iToConv) { int i; int bIsNegative; -- cgit v1.2.3