diff options
author | ram@gw.mysql.r18.ru <> | 2004-08-31 21:27:58 +0500 |
---|---|---|
committer | ram@gw.mysql.r18.ru <> | 2004-08-31 21:27:58 +0500 |
commit | b93a973b1203b969fef15ef8c10d0d494423f9ed (patch) | |
tree | 03be22b4525ca6105700a5357899d4e1c249a6dd /isam | |
parent | 86fcffb3230cfe326da144db9e3009e5ab9c85ca (diff) | |
download | mariadb-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 'isam')
-rw-r--r-- | isam/isamchk.c | 2 | ||||
-rw-r--r-- | isam/pack_isam.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/isam/isamchk.c b/isam/isamchk.c index 8603b436841..daa9464eb4f 100644 --- a/isam/isamchk.c +++ b/isam/isamchk.c @@ -670,7 +670,7 @@ static void get_options(register int *argc, register char ***argv) if (isatty(fileno(stdout))) 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 (*argc == 0) diff --git a/isam/pack_isam.c b/isam/pack_isam.c index 59594ccc929..b2e21afc743 100644 --- a/isam/pack_isam.c +++ b/isam/pack_isam.c @@ -353,7 +353,7 @@ static void get_options(int *argc, char ***argv) { int ho_error; - 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); my_progname= argv[0][0]; |