Make naptr-eduroam.sh check NAPTR type case insensitively.
authorLinus Nordberg <linus@nordu.net>
Mon, 13 Aug 2012 08:07:09 +0000 (10:07 +0200)
committerLinus Nordberg <linus@nordu.net>
Mon, 13 Aug 2012 08:07:09 +0000 (10:07 +0200)
Fix by Adam Osuchowski.

AUTHORS
tools/naptr-eduroam.sh

diff --git a/AUTHORS b/AUTHORS
index 4a7323f..71cad2a 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -5,6 +5,7 @@ Radsecproxy is currently being maintained by Linus Nordberg
 
 The following people have contributed to Radsecproxy in one way or
 another:
+Adam Osuchowski
 Andreas Solberg
 Arne Schwabe
 Faidon Liambotis
index 0e37afb..e310812 100755 (executable)
@@ -31,7 +31,7 @@ dig_it_naptr() {
     ${DIGCMD} +short naptr ${REALM} | grep x-eduroam:radius.tls | sort -n -k1 |
     while read line; do
        set $line ; TYPE=$3 ; HOST=$6
-       if [ "$TYPE" = "\"s\"" ]; then
+       if [ "$TYPE" = "\"s\"" -o "$TYPE" = "\"S\"" ]; then
            SRV_HOST=${HOST%.}
            dig_it_srv
        fi
@@ -50,7 +50,7 @@ host_it_naptr() {
     ${HOSTCMD} -t naptr ${REALM} | grep x-eduroam:radius.tls | sort -n -k5 |
     while read line; do
        set $line ; TYPE=$7 ; HOST=${10}
-       if [ "$TYPE" = "\"s\"" ]; then
+       if [ "$TYPE" = "\"s\"" -o "$TYPE" = "\"S\"" ]; then
            SRV_HOST=${HOST%.}
            host_it_srv
        fi