7f82e232d708c48e78b2059a2a3b4e41b8cdf43d
max
  Thu Feb 24 02:36:18 2022 -0800
fixing needless typo in browserSetup.sh found by Jairo, refs #28733

diff --git src/product/installer/browserSetup.sh src/product/installer/browserSetup.sh
index ba26e79..6dac18f 100755
--- src/product/installer/browserSetup.sh
+++ src/product/installer/browserSetup.sh
@@ -502,31 +502,31 @@
 {
     echo2
     echo2 Press any key to continue or CTRL-C to abort.
     read -n 1
     echo2
 }
 
 # set MYCNF to the path to my.cnf
 function setMYCNF ()
 {
     if [ -f /etc/my.cnf ] ; then
 	# Centos 6-8
     	MYCNF=/etc/my.cnf
     elif [ -f /etc/my.cnf.d/mariadb-server.cnf ] ; then
 	# Centos 8 stream
-    	MYCNF=/etc/mysql/mysql.conf.d/mariadb-server.cnf 
+    	MYCNF=/etc/my.cnf.d/mariadb-server.cnf 
     elif [ -f /etc/mysql/my.cnf ] ; then
         # Ubuntu 14
     	MYCNF=/etc/mysql/my.cnf
     elif [ -f /etc/mysql/mysql.conf.d/mysqld.cnf ] ; then
 	# Ubuntu 16, 18, 20
     	MYCNF=/etc/mysql/mysql.conf.d/mysqld.cnf
     else
     	echo Could not find my.cnf. Adapt 'setMYCNF()' in browserSetup.sh and/or contact us.
     	exit 1
     fi
     echo Found Mariadb config file: $MYCNF
 }
 
 function mysqlAllowOldPasswords
 # mysql >= 8 does not allow the old passwords anymore. But our client is still compiled