diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-24 08:27:21 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-24 08:27:21 +0000 |
commit | f48f11f50e9337e499e6e7b56ca3f143cb55f181 (patch) | |
tree | d5aa1c07869fed909fae281cbe8f7e5266339e98 /omusrmsg.c | |
parent | 6c1dc3ccbcd05115f3737f2b2db06be2505e68c6 (diff) | |
download | rsyslog-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.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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++; |