mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-21 17:10:44 +01:00
Merge branch 'v4-beta' into beta
This commit is contained in:
commit
225483127e
@ -129,6 +129,11 @@ increase.
|
||||
output module interface
|
||||
---------------------------------------------------------------------------
|
||||
Version 4.5.6 [v4-beta] (rgerhards), 2009-09-??
|
||||
- bugfix(minor): diag function returned wrong queue memeber count
|
||||
for the main queue if an active DA queue existed. This had no relevance
|
||||
to real deployments (assuming they are not running the debug/diagnostic
|
||||
module...), but sometimes caused grief and false alerts in the
|
||||
testbench.
|
||||
- included some important fixes from v4-stable:
|
||||
* bugfix: invalid handling of zero-sized messages
|
||||
* bugfix: zero-sized UDP messages are no longer processed
|
||||
|
||||
@ -413,7 +413,8 @@ diagGetMainMsgQSize(int *piSize)
|
||||
{
|
||||
DEFiRet;
|
||||
assert(piSize != NULL);
|
||||
*piSize = pMsgQueue->iQueueSize;
|
||||
*piSize = (pMsgQueue->pqDA != NULL) ? pMsgQueue->pqDA->iQueueSize : 0;
|
||||
*piSize += pMsgQueue->iQueueSize;
|
||||
RETiRet;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user