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 /runtime/module-template.h | |
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 'runtime/module-template.h')
-rw-r--r-- | runtime/module-template.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/module-template.h b/runtime/module-template.h index c3e79570..f65aaf0f 100644 --- a/runtime/module-template.h +++ b/runtime/module-template.h @@ -249,7 +249,6 @@ static rsRetVal beginTransaction(wrkrInstanceData_t __attribute__((unused)) *pWr #define BEGINendTransaction \ static rsRetVal endTransaction(wrkrInstanceData_t __attribute__((unused)) *pWrkrData)\ {\ - instanceData *pData = NULL; /* deliberately make module abort if it does not support new IF */\ DEFiRet; #define CODESTARTendTransaction /* currently empty, but may be extended */ @@ -264,7 +263,6 @@ static rsRetVal endTransaction(wrkrInstanceData_t __attribute__((unused)) *pWrkr #define BEGINdoAction \ static rsRetVal doAction(uchar __attribute__((unused)) **ppString, unsigned __attribute__((unused)) iMsgOpts, wrkrInstanceData_t __attribute__((unused)) *pWrkrData)\ {\ - instanceData *pData = NULL; /* deliberately make module abort if it does not support new IF */\ DEFiRet; #define CODESTARTdoAction \ |