diff options
author | unknown <jani@rhols221.adsl.netsonic.fi> | 2002-10-04 17:18:41 +0300 |
---|---|---|
committer | unknown <jani@rhols221.adsl.netsonic.fi> | 2002-10-04 17:18:41 +0300 |
commit | b6e1ae891c4d216348eddf50051a9dcf1f2a1dee (patch) | |
tree | 111dd00bf0fe093af1c8189121d831f38d898151 /myisam | |
parent | 04913b565a6d8783638d2beac137c1865ed0411c (diff) | |
download | mariadb-git-b6e1ae891c4d216348eddf50051a9dcf1f2a1dee.tar.gz |
Small fixes in mysql and myisampack
client/mysql.cc:
Made i-am-a-dummy option to be identical with safe-updates.
myisam/myisampack.c:
Fixed a typo.
Diffstat (limited to 'myisam')
-rw-r--r-- | myisam/myisampack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/myisam/myisampack.c b/myisam/myisampack.c index cf0448a9062..4fc84ac5657 100644 --- a/myisam/myisampack.c +++ b/myisam/myisampack.c @@ -269,7 +269,7 @@ static struct my_option my_long_options[] = static void print_version(void) { - printf("%s Ver 1.21 for %s on %s\n", my_progname, SYSTEM_TYPE, MACHINE_TYPE); + printf("%s Ver 1.22 for %s on %s\n", my_progname, SYSTEM_TYPE, MACHINE_TYPE); } static void usage(void) @@ -282,7 +282,7 @@ static void usage(void) puts("Pack a MyISAM-table to take much less space."); puts("Keys are not updated, you must run myisamchk -rq on the datafile"); puts("afterwards to update the keys."); - puts("You should give the .MSI file as the filename argument."); + puts("You should give the .MYI file as the filename argument."); printf("\nUsage: %s [OPTIONS] filename...\n", my_progname); my_print_help(my_long_options); |