diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-09-13 02:37:06 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-09-13 02:37:06 +0200 |
commit | ad777330629c31447018e47b4033a7ebaa9fe655 (patch) | |
tree | 2182cd9d0a873a9ade5ce59231e33b02d1584470 /runtime/rsyslog.h | |
parent | d275d116fcdcff14ff71642cf7b4f563a2b42eff (diff) | |
download | rsyslog-ad777330629c31447018e47b4033a7ebaa9fe655.tar.gz rsyslog-ad777330629c31447018e47b4033a7ebaa9fe655.tar.bz2 rsyslog-ad777330629c31447018e47b4033a7ebaa9fe655.zip |
bugfix: segfault on startup if TLS was used but no CA cert set
Diffstat (limited to 'runtime/rsyslog.h')
-rw-r--r-- | runtime/rsyslog.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/rsyslog.h b/runtime/rsyslog.h index 07d58d68..067164d0 100644 --- a/runtime/rsyslog.h +++ b/runtime/rsyslog.h @@ -3,7 +3,7 @@ * * Begun 2005-09-15 RGerhards * - * Copyright (C) 2005-2008 by Rainer Gerhards and Adiscon GmbH + * Copyright (C) 2005-2013 by Rainer Gerhards and Adiscon GmbH * * This file is part of the rsyslog runtime library. * @@ -393,6 +393,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth RS_RET_INVLD_SETOP = -2305, /**< invalid variable set operation, incompatible type */ RS_RET_RULESET_EXISTS = -2306,/**< ruleset already exists */ RS_RET_DEPRECATED = -2307,/**< deprecated functionality is used */ + RS_RET_CA_CERT_MISSING = -2308,/**< a CA cert is missing where one is required (e.g. TLS) */ /* RainerScript error messages (range 1000.. 1999) */ RS_RET_SYSVAR_NOT_FOUND = 1001, /**< system variable could not be found (maybe misspelled) */ |