diff options
author | unknown <jperkin@production.mysql.com> | 2007-08-24 16:40:26 +0200 |
---|---|---|
committer | unknown <jperkin@production.mysql.com> | 2007-08-24 16:40:26 +0200 |
commit | 51f2b38f2424c4f9c3068ac8b919f7ce79eb343a (patch) | |
tree | d3e1276bf47a97ebe12355c9ee44d29ba090b644 /scripts/mysqld_safe.sh | |
parent | 2669e39d88868c8b6cd76b872bbd8fd3b0c20353 (diff) | |
download | mariadb-git-51f2b38f2424c4f9c3068ac8b919f7ce79eb343a.tar.gz |
Finish up last syslog -> want_syslog change missed in r1.91,
fixing bug#30624
scripts/mysqld_safe.sh:
Fix last syslog -> want_syslog.
Diffstat (limited to 'scripts/mysqld_safe.sh')
-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 |