diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-25 12:54:59 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-25 12:54:59 +0200 |
commit | 75cf92117c118f9aca37b39f44ad1e1e759f78bf (patch) | |
tree | d0017f4419daa9e0ae22117f44b78208a4b35307 /runtime/netstrm.c | |
parent | 21bea2e1df044771f713fa426bf6b005385c40da (diff) | |
download | rsyslog-75cf92117c118f9aca37b39f44ad1e1e759f78bf.tar.gz rsyslog-75cf92117c118f9aca37b39f44ad1e1e759f78bf.tar.xz rsyslog-75cf92117c118f9aca37b39f44ad1e1e759f78bf.zip |
made gtls server driver work in plain tcp mode
Diffstat (limited to 'runtime/netstrm.c')
-rw-r--r-- | runtime/netstrm.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/runtime/netstrm.c b/runtime/netstrm.c index 5e073899..be754aae 100644 --- a/runtime/netstrm.c +++ b/runtime/netstrm.c @@ -68,13 +68,6 @@ BEGINobjDestruct(netstrm) /* be sure to specify the object type also in END and CODESTARTobjDestruct(netstrm) if(pThis->pDrvrData != NULL) iRet = pThis->Drvr.Destruct(&pThis->pDrvrData); - - /* driver can only be released after all data has been destructed */ - if(pThis->Drvr.ifIsLoaded == 1) { - obj.ReleaseObj(__FILE__, pThis->pDrvrName+2, pThis->pDrvrName, (void*) &pThis->Drvr); - } - if(pThis->pDrvrName != NULL) - free(pThis->pDrvrName); ENDobjDestruct(netstrm) |