summaryrefslogtreecommitdiff
path: root/myisam
diff options
context:
space:
mode:
authorarjen@george.bitbike.com <>2003-01-14 12:21:18 +1000
committerarjen@george.bitbike.com <>2003-01-14 12:21:18 +1000
commit7297dbc75fea0724988f29e4dec806468f56424c (patch)
tree43d09c2ed0c6d948c73385e8fe22ec5f49efe9dc /myisam
parent1b656d45fb23f386607453c22c0d41169dee07f0 (diff)
downloadmariadb-git-7297dbc75fea0724988f29e4dec806468f56424c.tar.gz
Text fixes: ISAM -> MyISAM for myisamchk (found by Jocelyn Fournier).
Diffstat (limited to 'myisam')
-rw-r--r--myisam/myisamchk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/myisam/myisamchk.c b/myisam/myisamchk.c
index 0d8d1430ce9..7fa91253850 100644
--- a/myisam/myisamchk.c
+++ b/myisam/myisamchk.c
@@ -129,7 +129,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);
@@ -328,7 +328,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\
@@ -1674,7 +1674,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;