summaryrefslogtreecommitdiffstats
path: root/runtime/queue.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-05-19 18:58:33 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2009-05-19 18:58:33 +0200
commit0cf8e88a348dc574244e4f5c2be26f47e8bfff08 (patch)
tree344746e43ce112e6fae231139b809cfd430e1e98 /runtime/queue.h
parenta9c4b26d462dd3c9dbd0575a3a1acc6d8df1c3b3 (diff)
downloadrsyslog-0cf8e88a348dc574244e4f5c2be26f47e8bfff08.tar.gz
rsyslog-0cf8e88a348dc574244e4f5c2be26f47e8bfff08.tar.xz
rsyslog-0cf8e88a348dc574244e4f5c2be26f47e8bfff08.zip
solved the intended-discard-during-dequeue issue
Diffstat (limited to 'runtime/queue.h')
-rw-r--r--runtime/queue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/queue.h b/runtime/queue.h
index 92bf8ae5..954a7fd4 100644
--- a/runtime/queue.h
+++ b/runtime/queue.h
@@ -34,7 +34,7 @@
typedef struct toDeleteLst_s toDeleteLst_t;
struct toDeleteLst_s {
qDeqID deqID;
- int nElem;
+ int nElemDeq; /* numbe of elements that were dequeued and as such must now be discarded */
struct toDeleteLst_s *pNext;
};