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 /tcpsrv.c | |
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 'tcpsrv.c')
-rw-r--r-- | tcpsrv.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -943,6 +943,8 @@ finalize_it: if(iRet != RS_RET_OK) { if(pThis->pNS != NULL) netstrms.Destruct(&pThis->pNS); + errmsg.LogError(0, iRet, "tcpsrv could not create listener (inputname: '%s')", + (pThis->pszInputName == NULL) ? (uchar*)"*UNSET*" : pThis->pszInputName); } RETiRet; } |