]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Author: Unknown - NetBSD Project
authorAmos Jeffries <squid3@treenet.co.nz>
Thu, 23 Apr 2009 08:08:14 +0000 (20:08 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Thu, 23 Apr 2009 08:08:14 +0000 (20:08 +1200)
Fix bashism in squid_kerb_auth helper configuration file

Found by NetBSD project pkgsrc tool.
Author of that tool is Roland Illig (rillig@netbsd.org).

helpers/negotiate_auth/squid_kerb_auth/configure.in

index 0b0930858ee1109665f6762c23e6a1c7cb92aae9..c92cc120edbc3873b147a94de6abbae522a7cb2d 100644 (file)
@@ -286,21 +286,21 @@ if test "$enable_arg" = "no"; then
   AC_CHECK_PROG(ac_krb5_config,krb5-config,yes,no)
   case $sys in
            Linux) rpm -q heimdal-lib >/dev/null 2>&1
-                  if test $? == 0 ; then
+                  if test $? = 0 ; then
                     check_heimdal
                  else 
                    check_mit
                   fi 
                   ;;
            AIX)   lslpp -L krb5.client.rte >/dev/null 2>&1
-                  if test $? == 0 ; then
+                  if test $? = 0 ; then
                     check_nas
                  else 
                    check_mit
                   fi
                   ;;
            SunOS) pkginfo SUNWgss >/dev/null 2>&1
-                  if test $? == 0 ; then
+                  if test $? = 0 ; then
                     check_seam
                  else 
                    check_mit