From 5227871598f936f4ae949f2f01ac86c8ab907f50 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Wed, 19 Sep 2012 15:12:45 +0200 Subject: bugfix: debug output indicated improper queue type --- ChangeLog | 1 + runtime/queue.c | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 96fdb5e8..a90e53c9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ Version 7.1.4 [devel] 2012-09-?? This function was called at various places, most importantly during "last messages repeated n times" processing and omruleset. If CEE(JSON) data was present, it was lost as part of the copy process. +- bugfix: debug output indicated improper queue type --------------------------------------------------------------------------- Version 7.1.3 [devel] 2012-09-17 - introduced "set" and "unset" config statements diff --git a/runtime/queue.c b/runtime/queue.c index 2108e231..90ffc0a0 100644 --- a/runtime/queue.c +++ b/runtime/queue.c @@ -232,12 +232,16 @@ getQueueTypeName(queueType_t t) switch(t) { case QUEUETYPE_FIXED_ARRAY: r = "FixedArray"; + break; case QUEUETYPE_LINKEDLIST: r = "LinkedList"; + break; case QUEUETYPE_DISK: r = "Disk"; + break; case QUEUETYPE_DIRECT: r = "Direct"; + break; } return r; } -- cgit v1.2.3