summaryrefslogtreecommitdiff
path: root/myisam/myisamchk.c
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2003-01-18 03:13:37 +0200
committermonty@mashka.mysql.fi <>2003-01-18 03:13:37 +0200
commit76f146a17551e218727ee4a5544edb62d3cbe56e (patch)
treeb24bce166fd5affbcc506bbc7d70c2c7ef00f561 /myisam/myisamchk.c
parent1b03f007101aa5123a7e55add3db5139a47bddc6 (diff)
parentc1d614192ee6930aed50f0cf64bf60abf6c1acb0 (diff)
downloadmariadb-git-76f146a17551e218727ee4a5544edb62d3cbe56e.tar.gz
Merge with 4.0.9
Diffstat (limited to 'myisam/myisamchk.c')
-rw-r--r--myisam/myisamchk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/myisam/myisamchk.c b/myisam/myisamchk.c
index 281cb90d9bf..1b180a728ba 100644
--- a/myisam/myisamchk.c
+++ b/myisam/myisamchk.c
@@ -130,7 +130,7 @@ int main(int argc, char **argv)
char buff[22],buff2[22];
if (!(check_param.testflag & T_SILENT) || check_param.testflag & T_INFO)
puts("\n---------\n");
- printf("\nTotal of all %d ISAM-files:\nData records: %9s Deleted blocks: %9s\n",check_param.total_files,llstr(check_param.total_records,buff),
+ printf("\nTotal of all %d MyISAM-files:\nData records: %9s Deleted blocks: %9s\n",check_param.total_files,llstr(check_param.total_records,buff),
llstr(check_param.total_deleted,buff2));
}
free_defaults(default_argv);
@@ -330,7 +330,7 @@ static void usage(void)
print_version();
puts("By Monty, for your professional use");
puts("This software comes with NO WARRANTY: see the PUBLIC for details.\n");
- puts("Description, check and repair of ISAM tables.");
+ puts("Description, check and repair of MyISAM tables.");
puts("Used without options all tables on the command will be checked for errors");
printf("Usage: %s [OPTIONS] tables[.MYI]\n", my_progname);
puts("\nGlobal options:\n\
@@ -1693,7 +1693,7 @@ void mi_check_print_error(MI_CHECK *param, const char *fmt,...)
if (!param->warning_printed && !param->error_printed)
{
if (param->testflag & T_SILENT)
- fprintf(stderr,"%s: ISAM file %s\n",my_progname,param->isam_file_name);
+ fprintf(stderr,"%s: MyISAM file %s\n",my_progname,param->isam_file_name);
param->out_flag|= O_DATA_LOST;
}
param->error_printed|=1;