diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-26 09:31:50 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-26 09:31:50 +0000 |
commit | 1b1229cd1e76ee43b8fb75466dd80a2c72b54136 (patch) | |
tree | 3af783f24c4ad2272ba06656d8b02d7a0fa9f124 /omshell.c | |
parent | b0f7302011f1bcc298c7a78ed3bb3f500893e70a (diff) | |
download | rsyslog-1b1229cd1e76ee43b8fb75466dd80a2c72b54136.tar.gz rsyslog-1b1229cd1e76ee43b8fb75466dd80a2c72b54136.tar.xz rsyslog-1b1229cd1e76ee43b8fb75466dd80a2c72b54136.zip |
- changed doAction() interface to include module data pointer
- removed references to f_un from omusrmsg.c
- changed module template for parseSelectorAct() [code reduction,
consitency]
Diffstat (limited to 'omshell.c')
-rw-r--r-- | omshell.c | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -89,14 +89,13 @@ ENDdoAction BEGINparseSelectorAct - uchar *p; CODESTARTparseSelectorAct p = *pp; /* yes, the if below is redundant, but I need it now. Will go away as * the code further changes. -- rgerhards, 2007-07-25 */ if(*p == '^') { - if((iRet = createInstance(&pModData)) != RS_RET_OK) + if((iRet = createInstance(&pData)) != RS_RET_OK) return iRet; } @@ -116,10 +115,6 @@ CODESTARTparseSelectorAct break; } - if(iRet == RS_RET_OK) { - *ppModData = pModData; - *pp = p; - } ENDparseSelectorAct |