From 26577e330ce795ed5f9eeecd9622da7e14dc63c7 Mon Sep 17 00:00:00 2001
From: Jo-Philipp Wich <jow@openwrt.org>
Date: Sun, 1 Apr 2012 05:32:32 +0000
Subject: [PATCH] libnl-tiny: port upstream bugfix
 8ee16e6688657886f591f0841cb8e892743ecf2a from libnl, fixes error on hostapd
 interface initialization

SVN-Revision: 31155
---
 package/libnl-tiny/Makefile     | 4 ++--
 package/libnl-tiny/src/socket.c | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/libnl-tiny/Makefile b/package/libnl-tiny/Makefile
index f964249283..37ac26fe9c 100644
--- a/package/libnl-tiny/Makefile
+++ b/package/libnl-tiny/Makefile
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2006-2009 OpenWrt.org
+# Copyright (C) 2006-2012 OpenWrt.org
 #
 # This is free software, licensed under the GNU General Public License v2.
 # See /LICENSE for more information.
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=libnl-tiny
 PKG_VERSION:=0.1
-PKG_RELEASE:=2
+PKG_RELEASE:=3
 
 include $(INCLUDE_DIR)/package.mk
 
diff --git a/package/libnl-tiny/src/socket.c b/package/libnl-tiny/src/socket.c
index 6fe56fdc53..1429825e63 100644
--- a/package/libnl-tiny/src/socket.c
+++ b/package/libnl-tiny/src/socket.c
@@ -59,7 +59,7 @@ static void release_local_port(uint32_t port)
 		return;
 	
 	nr = port >> 22;
-	used_ports_map[nr / 32] &= ~((nr % 32) + 1);
+	used_ports_map[nr / 32] &= ~(1 << nr % 32);
 }
 
 /**
-- 
GitLab