summaryrefslogtreecommitdiff
path: root/myisam/myisamchk.c
diff options
context:
space:
mode:
authorram@gw.mysql.r18.ru <>2004-08-31 21:27:58 +0500
committerram@gw.mysql.r18.ru <>2004-08-31 21:27:58 +0500
commitb93a973b1203b969fef15ef8c10d0d494423f9ed (patch)
tree03be22b4525ca6105700a5357899d4e1c249a6dd /myisam/myisamchk.c
parent86fcffb3230cfe326da144db9e3009e5ab9c85ca (diff)
downloadmariadb-git-b93a973b1203b969fef15ef8c10d0d494423f9ed.tar.gz
Added global my_getopt_error_reporter function pointer which is
used in the handle_options() function (instead of using additional handle_option() parameter). The default value of the my_getopt_error_reporter is default_reporter(). One can set it to other functions if case of need.
Diffstat (limited to 'myisam/myisamchk.c')
-rw-r--r--myisam/myisamchk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/myisamchk.c b/myisam/myisamchk.c
index e8e85345897..5377ecc18a5 100644
--- a/myisam/myisamchk.c
+++ b/myisam/myisamchk.c
@@ -677,7 +677,7 @@ static void get_options(register int *argc,register char ***argv)
if (isatty(fileno(stdout)))
check_param.testflag|=T_WRITE_LOOP;
- if ((ho_error=handle_options(argc, argv, my_long_options, get_one_option, NULL)))
+ if ((ho_error=handle_options(argc, argv, my_long_options, get_one_option)))
exit(ho_error);
/* If using repair, then update checksum if one uses --update-state */