radsecproxy: Bump to v1.7.2
authorToke Høiland-Jørgensen <toke@toke.dk>
Tue, 4 Sep 2018 12:48:48 +0000 (14:48 +0200)
committerToke Høiland-Jørgensen <toke@toke.dk>
Tue, 4 Sep 2018 12:48:48 +0000 (14:48 +0200)
Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
net/radsecproxy/Makefile
net/radsecproxy/patches/100-fix-debug-tid.patch [deleted file]

index 340000067f5a088ed78af8f4a0ac7b6de8f63a12..bfb2eda1a80969bc7fc932e6a1e6d6d3f17d3ef6 100644 (file)
@@ -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 (file)
index c170e3f..0000000
+++ /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;