diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-10-31 18:15:33 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-10-31 18:15:33 +0100 |
commit | b44dcabe90de000cb98c02f74ce44929aa11a818 (patch) | |
tree | 6d4e7e27f47a2752a6de111a7ccd8953f5224e54 /tools/omfwd.c | |
parent | d171629863e8a5842dda9fe6272f9053883a8960 (diff) | |
download | rsyslog-b44dcabe90de000cb98c02f74ce44929aa11a818.tar.gz rsyslog-b44dcabe90de000cb98c02f74ce44929aa11a818.tar.bz2 rsyslog-b44dcabe90de000cb98c02f74ce44929aa11a818.zip |
remove pData emulation from v8 omod interface
breaks compilation of not converted modules - but these
won't work anyways. So better change this now.
Diffstat (limited to 'tools/omfwd.c')
-rw-r--r-- | tools/omfwd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/omfwd.c b/tools/omfwd.c index a7ba4d01..01702043 100644 --- a/tools/omfwd.c +++ b/tools/omfwd.c @@ -751,7 +751,9 @@ BEGINdoAction # ifdef USE_NETZIP Bytef *out = NULL; /* for compression */ # endif + instanceData *pData; CODESTARTdoAction + pData = pWrkrData->pData; CHKiRet(doTryResume(pData)); iMaxLine = glbl.GetMaxLine(); @@ -827,7 +829,9 @@ ENDdoAction BEGINendTransaction + instanceData *pData; CODESTARTendTransaction + pData = pWrkrData->pData; dbgprintf("omfwd: endTransaction, offsSndBuf %u\n", pData->offsSndBuf); if(pData->offsSndBuf != 0) { iRet = TCPSendBuf(pData, pData->sndBuf, pData->offsSndBuf, IS_FLUSH); |