From bee578bc2b5e3f73f6c0d1c90ed780e189863148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?= Date: Tue, 4 Sep 2018 14:48:48 +0200 Subject: [PATCH] radsecproxy: Bump to v1.7.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Toke Høiland-Jørgensen --- net/radsecproxy/Makefile | 6 +++--- net/radsecproxy/patches/100-fix-debug-tid.patch | 11 ----------- 2 files changed, 3 insertions(+), 14 deletions(-) delete mode 100644 net/radsecproxy/patches/100-fix-debug-tid.patch diff --git a/net/radsecproxy/Makefile b/net/radsecproxy/Makefile index 340000067..bfb2eda1a 100644 --- a/net/radsecproxy/Makefile +++ b/net/radsecproxy/Makefile @@ -8,14 +8,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=radsecproxy -PKG_VERSION:=1.7.1 +PKG_VERSION:=1.7.2 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/radsecproxy/radsecproxy/releases/download/$(PKG_VERSION)/ -PKG_HASH:=49fd644684c6ea502d896d31e29f1acf2ae9b61b02b231a8ffd0cec11857dd07 +PKG_HASH:=2cf23e618ab9275221350acf5a97bce4ff18aee472045f8a3b4c7673491079d2 -PKG_LICENSE:=GPL-2.0+ +PKG_LICENSE:=BSD-3-CLAUSE PKG_LICENSE_FILES:=LICENSE PKG_FIXUP:=autoreconf diff --git a/net/radsecproxy/patches/100-fix-debug-tid.patch b/net/radsecproxy/patches/100-fix-debug-tid.patch deleted file mode 100644 index c170e3ffb..000000000 --- a/net/radsecproxy/patches/100-fix-debug-tid.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/debug.c -+++ b/debug.c -@@ -153,7 +153,7 @@ void debug_logit(uint8_t level, const ch - - if (debug_tid) { - tidbuf = malloc((3*sizeof(pthread_t)+5)+strlen(format)); -- sprintf(tidbuf, "(%ld) %s", pthread_self(), format); -+ sprintf(tidbuf, "(%ld) %s", (long int)pthread_self(), format); - format = tidbuf; - } else - tidbuf = NULL;