summaryrefslogtreecommitdiffstats
path: root/runtime/netstrm.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-05-05 14:19:12 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2008-05-05 14:19:12 +0200
commit7022e9019ebf9bf48ffd17ac11099f9cc2f22e4d (patch)
treef7cf32d138a95b1544d3643a1a18011c12115deb /runtime/netstrm.c
parent74ab20fa5cb95a90b46a4b423dc85b507f17ad8d (diff)
downloadrsyslog-7022e9019ebf9bf48ffd17ac11099f9cc2f22e4d.tar.gz
rsyslog-7022e9019ebf9bf48ffd17ac11099f9cc2f22e4d.tar.xz
rsyslog-7022e9019ebf9bf48ffd17ac11099f9cc2f22e4d.zip
support for different forwarding stream drivers added
they can now be set on an action-by-action basis
Diffstat (limited to 'runtime/netstrm.c')
-rw-r--r--runtime/netstrm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/netstrm.c b/runtime/netstrm.c
index 47c67a53..a1384a28 100644
--- a/runtime/netstrm.c
+++ b/runtime/netstrm.c
@@ -116,7 +116,7 @@ AcceptConnReq(netstrm_t *pThis, netstrm_t **ppNew)
/* accept the new connection */
CHKiRet(pThis->Drvr.AcceptConnReq(pThis->pDrvrData, &pNewNsd));
/* construct our object so that we can use it... */
- CHKiRet(objUse(netstrms, DONT_LOAD_LIB)); /* load netstrms obj if not already done so */
+ CHKiRet(objUse(netstrms, DONT_LOAD_LIB)); /* use netstrms obj if not already done so */
CHKiRet(netstrms.CreateStrm(pThis->pNS, ppNew));
(*ppNew)->pDrvrData = pNewNsd;