diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2011-05-02 12:18:49 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2011-05-02 12:18:49 +0200 |
commit | 82818fe15c6da23e4a790618b2fdda53d0ed66e3 (patch) | |
tree | 22b1be451e30d7254a4f479ce52434235092f07e /runtime/strmsrv.c | |
parent | 24b62834801043bf2d9560b0cca3967e5762bea1 (diff) | |
parent | d13ec67f9ab9c59a88952af6aec372fd082401ca (diff) | |
download | rsyslog-82818fe15c6da23e4a790618b2fdda53d0ed66e3.tar.gz rsyslog-82818fe15c6da23e4a790618b2fdda53d0ed66e3.tar.xz rsyslog-82818fe15c6da23e4a790618b2fdda53d0ed66e3.zip |
Merge branch 'v4-stable' into v5-stable
Conflicts:
tcpsrv.c
Diffstat (limited to 'runtime/strmsrv.c')
-rw-r--r-- | runtime/strmsrv.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/strmsrv.c b/runtime/strmsrv.c index e66ad717..f448cd4f 100644 --- a/runtime/strmsrv.c +++ b/runtime/strmsrv.c @@ -521,6 +521,7 @@ Run(strmsrv_t *pThis) strms_sess_t *pNewSess; nssel_t *pSel; ssize_t iRcvd; + rsRetVal localRet; ISOBJ_TYPE_assert(pThis, strmsrv); @@ -580,11 +581,12 @@ Run(strmsrv_t *pThis) break; case RS_RET_OK: /* valid data received, process it! */ - if(strms_sess.DataRcvd(pThis->pSessions[iSTRMSess], buf, iRcvd) != RS_RET_OK) { + localRet = strms_sess.DataRcvd(pThis->pSessions[iSTRMSess], buf, iRcvd); + if(localRet != RS_RET_OK) { /* in this case, something went awfully wrong. * We are instructed to terminate the session. */ - errmsg.LogError(0, NO_ERRCODE, "Tearing down STRM Session %d - see " + errmsg.LogError(0, localRet, "Tearing down STRM Session %d - see " "previous messages for reason(s)\n", iSTRMSess); pThis->pOnErrClose(pThis->pSessions[iSTRMSess]); strms_sess.Destruct(&pThis->pSessions[iSTRMSess]); |