diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-21 07:00:29 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-21 07:00:29 +0000 |
commit | 013073f1a6f1ed2230feaba0865d0c14212577d0 (patch) | |
tree | 5dd528a004f730658f16a012c66726417ff750d3 /syslogd.h | |
parent | 44bb5af7ccef417a1d088527fc02af5f0e8d3dc5 (diff) | |
download | rsyslog-013073f1a6f1ed2230feaba0865d0c14212577d0.tar.gz rsyslog-013073f1a6f1ed2230feaba0865d0c14212577d0.tar.xz rsyslog-013073f1a6f1ed2230feaba0865d0c14212577d0.zip |
changed rsCStrObj name to cstr_t, which is more inline with the rest of
rsyslog (now) and also much easier to type
Diffstat (limited to 'syslogd.h')
-rw-r--r-- | syslogd.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -77,12 +77,12 @@ struct filed { FILTER_EXPR = 2 /* extended filter, expression based */ } f_filter_type; EHostnameCmpMode eHostnameCmpMode; - rsCStrObj *pCSHostnameComp; /* hostname to check */ - rsCStrObj *pCSProgNameComp; /* tag to check or NULL, if not to be checked */ + cstr_t *pCSHostnameComp; /* hostname to check */ + cstr_t *pCSProgNameComp; /* tag to check or NULL, if not to be checked */ union { u_char f_pmask[LOG_NFACILITIES+1]; /* priority mask */ struct { - rsCStrObj *pCSPropName; + cstr_t *pCSPropName; enum { FIOP_NOP = 0, /* do not use - No Operation */ FIOP_CONTAINS = 1, /* contains string? */ @@ -90,7 +90,7 @@ struct filed { FIOP_STARTSWITH = 3, /* starts with a string? */ FIOP_REGEX = 4 /* matches a regular expression? */ } operation; - rsCStrObj *pCSCompValue; /* value to "compare" against */ + cstr_t *pCSCompValue; /* value to "compare" against */ char isNegated; /* actually a boolean ;) */ } prop; expr_t *f_expr; /* expression object */ |