diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-09-20 11:26:24 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-09-20 11:26:24 +0200 |
commit | a5dcf8cdb7db791d3f43e8cc4f793380739807c8 (patch) | |
tree | e8dbe37ad6c2dcc8d44b5bc07bdce9da0a57a082 /runtime/rsyslog.h | |
parent | dc40e3b43fa92d06ba03c4bb434f885db0ed4352 (diff) | |
download | rsyslog-a5dcf8cdb7db791d3f43e8cc4f793380739807c8.tar.gz rsyslog-a5dcf8cdb7db791d3f43e8cc4f793380739807c8.tar.bz2 rsyslog-a5dcf8cdb7db791d3f43e8cc4f793380739807c8.zip |
Implement RainerScript field() function
Diffstat (limited to 'runtime/rsyslog.h')
-rw-r--r-- | runtime/rsyslog.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/rsyslog.h b/runtime/rsyslog.h index ceb277d0..fe9f856a 100644 --- a/runtime/rsyslog.h +++ b/runtime/rsyslog.h @@ -392,6 +392,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth /* RainerScript error messages (range 1000.. 1999) */ RS_RET_SYSVAR_NOT_FOUND = 1001, /**< system variable could not be found (maybe misspelled) */ + RS_RET_FIELD_NOT_FOUND = 1002, /**< field() function did not find requested field */ /* some generic error/status codes */ RS_RET_OK = 0, /**< operation successful */ |