diff options
author | Michael Biebl <mbiebl@debian.org> | 2013-06-25 09:52:56 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-06-25 09:52:56 +0200 |
commit | 0f4ec4ad04011c9eb63754d10bbd0d912a227671 (patch) | |
tree | 155366ee57727f61d54f01eea5c37f7e72c6c528 /tcpsrv.h | |
parent | 2cd686d55589373a7f4747e7f1f5facf487201f6 (diff) | |
download | rsyslog-0f4ec4ad04011c9eb63754d10bbd0d912a227671.tar.gz rsyslog-0f4ec4ad04011c9eb63754d10bbd0d912a227671.tar.bz2 rsyslog-0f4ec4ad04011c9eb63754d10bbd0d912a227671.zip |
typo fix ("listner" vs. "listener")
Diffstat (limited to 'tcpsrv.h')
-rw-r--r-- | tcpsrv.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -63,9 +63,9 @@ struct tcpsrv_s { sbool bUsingEPoll; /**< are we in epoll mode (means we do not need to keep track of sessions!) */ sbool bUseFlowControl; /**< use flow control (make light delayable) */ int iLstnCurr; /**< max nbr of listeners currently supported */ - netstrm_t **ppLstn; /**< our netstream listners */ + netstrm_t **ppLstn; /**< our netstream listeners */ tcpLstnPortList_t **ppLstnPort; /**< pointer to relevant listen port description */ - int iLstnMax; /**< max number of listners supported */ + int iLstnMax; /**< max number of listeners supported */ int iSessMax; /**< max number of sessions supported */ tcpLstnPortList_t *pLstnPorts; /**< head pointer for listen ports */ |