summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-01-26 11:38:21 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2010-01-26 11:38:21 +0100
commit8a3a6f4deb76218f24e79380db30904eef1feded (patch)
tree8596ca27ac1c702deb07da4fd79c06f2e6bd717e
parent2c8654806373b289089b319f25146af2bb546118 (diff)
downloadrsyslog-8a3a6f4deb76218f24e79380db30904eef1feded.tar.gz
rsyslog-8a3a6f4deb76218f24e79380db30904eef1feded.tar.xz
rsyslog-8a3a6f4deb76218f24e79380db30904eef1feded.zip
did some adoptions necessary to use the bugfix with v4-beta code base
-rw-r--r--runtime/queue.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/queue.c b/runtime/queue.c
index 33fb4c0f..9d7a9058 100644
--- a/runtime/queue.c
+++ b/runtime/queue.c
@@ -860,9 +860,9 @@ static rsRetVal qDestructDisk(qqueue_t *pThis)
ASSERT(pThis != NULL);
if (pThis->tVars.disk.pWrite != NULL)
- strmDestruct(&pThis->tVars.disk.pWrite);
+ strm.Destruct(&pThis->tVars.disk.pWrite);
if (pThis->tVars.disk.pRead != NULL)
- strmDestruct(&pThis->tVars.disk.pRead);
+ strm.Destruct(&pThis->tVars.disk.pRead);
RETiRet;
}
@@ -1924,7 +1924,7 @@ static rsRetVal qqueuePersist(qqueue_t *pThis, int bIsCheckpoint)
}
/* indicate spool file needs to be deleted */
if (pThis->tVars.disk.pRead != NULL)
- CHKiRet(strmSetbDeleteOnClose(pThis->tVars.disk.pRead, 1));
+ CHKiRet(strm.SetbDeleteOnClose(pThis->tVars.disk.pRead, 1));
FINALIZE; /* nothing left to do, so be happy */
}
@@ -1959,15 +1959,15 @@ static rsRetVal qqueuePersist(qqueue_t *pThis, int bIsCheckpoint)
/* now persist the stream info */
if (pThis->tVars.disk.pWrite != NULL)
- CHKiRet(strmSerialize(pThis->tVars.disk.pWrite, psQIF));
+ CHKiRet(strm.Serialize(pThis->tVars.disk.pWrite, psQIF));
if (pThis->tVars.disk.pRead != NULL)
- CHKiRet(strmSerialize(pThis->tVars.disk.pRead, psQIF));
+ CHKiRet(strm.Serialize(pThis->tVars.disk.pRead, psQIF));
/* tell the input file object that it must not delete the file on close if the queue
* is non-empty - but only if we are not during a simple checkpoint
*/
if(bIsCheckpoint != QUEUE_CHECKPOINT && pThis->tVars.disk.pRead != NULL) {
- CHKiRet(strmSetbDeleteOnClose(pThis->tVars.disk.pRead, 0));
+ CHKiRet(strm.SetbDeleteOnClose(pThis->tVars.disk.pRead, 0));
}
/* we have persisted the queue object. So whenever it comes to an empty queue,