summaryrefslogtreecommitdiffstats
path: root/omusrmsg.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-07-24 08:27:21 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-07-24 08:27:21 +0000
commitf48f11f50e9337e499e6e7b56ca3f143cb55f181 (patch)
treed5aa1c07869fed909fae281cbe8f7e5266339e98 /omusrmsg.c
parent6c1dc3ccbcd05115f3737f2b2db06be2505e68c6 (diff)
downloadrsyslog-f48f11f50e9337e499e6e7b56ca3f143cb55f181.tar.gz
rsyslog-f48f11f50e9337e499e6e7b56ca3f143cb55f181.tar.xz
rsyslog-f48f11f50e9337e499e6e7b56ca3f143cb55f181.zip
changed action calling sequence to module interface/structure
Diffstat (limited to 'omusrmsg.c')
-rw-r--r--omusrmsg.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/omusrmsg.c b/omusrmsg.c
index cdb3981c..edd8c19e 100644
--- a/omusrmsg.c
+++ b/omusrmsg.c
@@ -236,7 +236,6 @@ static rsRetVal parseSelectorAct(uchar **pp, selector_t *f)
if(*p == '*') { /* wall */
dprintf ("write-all");
f->f_type = F_WALL;
- f->doAction = doAction;
if(*(p+1) == ';') {
/* we have a template specifier! */
p += 2; /* eat "*;" */
@@ -261,7 +260,6 @@ static rsRetVal parseSelectorAct(uchar **pp, selector_t *f)
*/
dprintf ("users: %s\n", p); /* ASP */
f->f_type = F_USERS;
- f->doAction = doAction;
for (i = 0; i < MAXUNAMES && *p && *p != ';'; i++) {
for (q = p; *q && *q != ',' && *q != ';'; )
q++;