diff options
author | monty@narttu.mysql.fi <> | 2000-10-11 00:48:03 +0300 |
---|---|---|
committer | monty@narttu.mysql.fi <> | 2000-10-11 00:48:03 +0300 |
commit | ae80d2a5a3bd11714ca5e2dab171e7805be92523 (patch) | |
tree | c6677bb9b8f4eee0143a25aa5b5b345004edc2ff /scripts | |
parent | 16f11f94b2fa7c7fca19fb5160b27c902c446a3c (diff) | |
download | mariadb-git-ae80d2a5a3bd11714ca5e2dab171e7805be92523.tar.gz |
Portability fixes
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/safe_mysqld.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/safe_mysqld.sh b/scripts/safe_mysqld.sh index f2478c086f7..ee9f40ed5dd 100644 --- a/scripts/safe_mysqld.sh +++ b/scripts/safe_mysqld.sh @@ -26,7 +26,7 @@ parse_arguments() { --datadir=*) DATADIR=`echo "$arg" | sed -e "s;--datadir=;;"` ;; --pid-file=*) pid_file=`echo "$arg" | sed -e "s;--pid-file=;;"` ;; --socket=*) MYSQL_UNIX_PORT=`echo "$arg" | sed -e "s;--socket=;;"` ;; - --port=*) MYSQL_TCP_PORT=`echo "$arg" | sed -e "s;--socket=;;"` ;; + --port=*) MYSQL_TCP_PORT=`echo "$arg" | sed -e "s;--port=;;"` ;; --log=*) log=`echo "$arg" | sed -e "s;--log=;;"` ;; --err-log=*) err_log=`echo "$arg" | sed -e "s;--err-log=;;"` ;; --basedir=*) MY_BASEDIR_VERSION=`echo "$arg" | sed -e "s;--basedir=;;"` ;; |