From 2b00c461fbe5c92c205cdef78db734eb11570e81 Mon Sep 17 00:00:00 2001 From: Stijn Tintel Date: Sun, 7 Nov 2021 20:21:25 +0200 Subject: [PATCH] treewide: s/OpenWRT/OpenWrt/ The correct spelling is OpenWrt. Signed-off-by: Stijn Tintel --- miniupnpd/Changelog.txt | 4 ++-- miniupnpd/configure | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/miniupnpd/Changelog.txt b/miniupnpd/Changelog.txt index 1b9d8a3..04c9e44 100644 --- a/miniupnpd/Changelog.txt +++ b/miniupnpd/Changelog.txt @@ -810,7 +810,7 @@ VERSION 1.6 : released the 2011/07/25 preparing SSDP stuff for IP v6. Trying to conform to UDA v1.1 2011/03/09: - Some modifications thanks to Daniel Dickinson to improve OpenWRT + Some modifications thanks to Daniel Dickinson to improve OpenWrt build. Fixed some warnings. @@ -1309,7 +1309,7 @@ VERSION 1.0 : 2006/11/23: now handling signal SIGINT setting HTTP socket with REUSEADDR thanks to Ryan Wagoner - daemon now tested on a Linksys WRT54G device running OpenWRT ! + daemon now tested on a Linksys WRT54G device running OpenWrt ! 2006/11/21: disabling rtableid in pf code. diff --git a/miniupnpd/configure b/miniupnpd/configure index 819882b..45563dc 100755 --- a/miniupnpd/configure +++ b/miniupnpd/configure @@ -106,9 +106,9 @@ if [ -f /etc/platform ]; then fi fi -# OpenWRT special case +# OpenWrt special case if [ -f ./os.openwrt ]; then - OS_NAME=OpenWRT + OS_NAME=OpenWrt OS_VERSION=$(cat ./os.openwrt) fi @@ -384,7 +384,7 @@ case $OS_NAME in fi V6SOCKETS_ARE_V6ONLY=`$(find /sbin /bin /usr/sbin /usr/bin -name sysctl) -n net.ipv6.bindv6only` ;; - OpenWRT) + OpenWrt) OS_URL=http://www.openwrt.org/ echo "#define USE_IFACEWATCHER 1" >> ${CONFIGFILE} FW=iptables @@ -481,7 +481,7 @@ case $FW in if [ "$IPTABLESPATH" ] ; then echo "CPPFLAGS += -I${IPTABLESPATH}/include/" >> config.mk echo "LDFLAGS += -L${IPTABLESPATH}/libiptc/" >> config.mk - # to test : change the following test to [ "$OS_NAME" != "OpenWRT" ] + # to test : change the following test to [ "$OS_NAME" != "OpenWrt" ] if [ -z "$TARGET_OPENWRT" ] ; then IPTABLESVERSION=`grep "\#define VERSION" ${IPTABLESPATH}/config.h | tr -d \" |cut -d" " -f3` echo "detected libiptc version $IPTABLESVERSION" @@ -500,7 +500,7 @@ case $FW in echo "LDLIBS += ${IPTABLESPATH}/libiptc/libiptc.a" >> config.mk fi else - # OpenWRT + # OpenWrt # check for system-wide iptables files. Test if iptables version >= 1.4.3 # the following test has to be verified : if test -f /usr/include/iptables/internal.h && \ @@ -580,7 +580,7 @@ fi # UUID API case $OS_NAME in - OpenWRT) + OpenWrt) echo "#define LIB_UUID" >> ${CONFIGFILE} ;; *)