Blame SOURCES/mysql-socket-removal.patch

6f9931
Since we support more versions of the daemon running with the same socket file,
6f9931
we can't blindly remove the socket file. MariaDB doesn't do it, so let's don't
6f9931
do it here as well.
6f9931
6f9931
RHBZ#1045401
6f9931
6f9931
diff -up mysql-5.5.36/scripts/mysqld_safe.sh.socket-removal mysql-5.5.36/scripts/mysqld_safe.sh
6f9931
--- mysql-5.5.36/scripts/mysqld_safe.sh.socket-removal	2014-02-12 20:53:35.655312819 +0100
6f9931
+++ mysql-5.5.36/scripts/mysqld_safe.sh	2014-02-12 20:53:45.014310456 +0100
6f9931
@@ -779,7 +779,7 @@ have_sleep=1
6f9931
 
6f9931
 while true
6f9931
 do
6f9931
-  rm -f $safe_mysql_unix_port "$pid_file"	# Some extra safety
6f9931
+  rm -f "$pid_file"	# Some extra safety
6f9931
 
6f9931
   start_time=`date +%M%S`
6f9931