diff options
author | unknown <lenz@mysql.com> | 2003-04-15 16:11:37 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2003-04-15 16:11:37 +0200 |
commit | bf09c10a6e72b5993b579ea023e3d91e6db22e46 (patch) | |
tree | 7c8c0fdbe96f2c3ad9ba69c8d973bbc2ab68d45b /scripts/mysqld_safe.sh | |
parent | ffb7fb400ef62a824047df479bc4c1f77aac76a7 (diff) | |
download | mariadb-git-bf09c10a6e72b5993b579ea023e3d91e6db22e46.tar.gz |
- added missing dashes to parameter "open-files-limit" in mysqld_safe
(bug #264)
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 094b1fbfcd3..e400c27b84c 100644 --- a/scripts/mysqld_safe.sh +++ b/scripts/mysqld_safe.sh @@ -224,7 +224,7 @@ then if test -n "$open_files" then ulimit -n $open_files - args="open-files-limit=$open_files $args" + args="--open-files-limit=$open_files $args" fi if test -n "$core_file_size" then |