diff options
author | unknown <joerg@trift2.> | 2007-09-14 00:59:22 +0200 |
---|---|---|
committer | unknown <joerg@trift2.> | 2007-09-14 00:59:22 +0200 |
commit | c0a9e9961e605340242e85c2132769153092c7ad (patch) | |
tree | 11016cd71ac5f0d484abf3bbb2651b35f2899b66 /scripts | |
parent | db1f9468d4c4e4981fb4bc6e96de19766d0ca377 (diff) | |
download | mariadb-git-c0a9e9961e605340242e85c2132769153092c7ad.tar.gz |
scripts/mysqld_safe.sh
Copy a fix by jperkin for bug#30624 into the 5.1.22 build tree.
scripts/mysqld_safe.sh:
Copy a fix by jperkin for bug#30624 into the 5.1.22 build tree.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysqld_safe.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysqld_safe.sh b/scripts/mysqld_safe.sh index e6f7ff7b3cb..d9c1a16e21a 100644 --- a/scripts/mysqld_safe.sh +++ b/scripts/mysqld_safe.sh @@ -363,7 +363,7 @@ then USER_OPTION="--user=$user" fi # Change the err log to the right user, if it is in use - if [ $syslog -eq 0 ]; then + if [ $want_syslog -eq 0 ]; then touch $err_log chown $user $err_log fi |