rsyslog: update to 8.29.0 (#7417)
This commit is contained in:
parent
70750f6cf4
commit
baeb909dc0
2 changed files with 24 additions and 2 deletions
22
srcpkgs/rsyslog/patches/correct-mutex-arg.patch
Normal file
22
srcpkgs/rsyslog/patches/correct-mutex-arg.patch
Normal file
|
@ -0,0 +1,22 @@
|
|||
diff --git a/plugins/imptcp/imptcp.c b/plugins/imptcp/imptcp.c
|
||||
index c373c17e..ab2a17e5 100644
|
||||
--- plugins/imptcp/imptcp.c
|
||||
+++ plugins/imptcp/imptcp.c
|
||||
@@ -828,7 +828,7 @@ AcceptConnReq(ptcplstn_t *pLstn, int *newSock, prop_t **peerName, prop_t **peerI
|
||||
LogMsg(0, RS_RET_NO_ERRCODE, LOG_INFO, "imptcp: connection established with host: %s", propGetSzStr(*peerName));
|
||||
}
|
||||
|
||||
- STATSCOUNTER_INC(pLstn->ctrSessOpen, pThis->pLstn->mutCtrSessOpen);
|
||||
+ STATSCOUNTER_INC(pLstn->ctrSessOpen, pLstn->mutCtrSessOpen);
|
||||
*newSock = iNewSock;
|
||||
|
||||
finalize_it:
|
||||
@@ -837,7 +837,7 @@ finalize_it:
|
||||
if(iRet != RS_RET_NO_MORE_DATA && pLstn->pSrv->bEmitMsgOnOpen) {
|
||||
LogError(0, NO_ERRCODE, "imptcp: connection could not be established with host: %s", propGetSzStr(*peerName));
|
||||
}
|
||||
- STATSCOUNTER_INC(pLstn->ctrSessOpenErr, pThis->pLstn->mutCtrSessOpenErr);
|
||||
+ STATSCOUNTER_INC(pLstn->ctrSessOpenErr, pLstn->mutCtrSessOpenErr);
|
||||
/* the close may be redundant, but that doesn't hurt... */
|
||||
if(iNewSock != -1)
|
||||
close(iNewSock);
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'rsyslog'
|
||||
pkgname=rsyslog
|
||||
version=8.28.0
|
||||
version=8.29.0
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
configure_args="--sbindir=/usr/bin
|
||||
|
@ -15,7 +15,7 @@ maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|||
license="GPL-3"
|
||||
homepage="http://www.rsyslog.com"
|
||||
distfiles="${homepage}/files/download/rsyslog/$pkgname-$version.tar.gz"
|
||||
checksum=4ca5405908d612d45da700e36856430510875518eb8028d296d1ee4d2c44678e
|
||||
checksum=220ba30b5afb0f3ddb328613fea7aa3966b01e4d0c52d6de9ab27b0858f19738
|
||||
|
||||
lib32disabled=yes
|
||||
disable_parallel_build=yes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue