diff options
author | jani@hynda.(none) <> | 2002-05-29 15:07:30 +0300 |
---|---|---|
committer | jani@hynda.(none) <> | 2002-05-29 15:07:30 +0300 |
commit | c961494444ccad68cb5b84da80397b5478cbeb03 (patch) | |
tree | f5eba07b104573f7bffdb03106d52dd2c350b85a /include/my_getopt.h | |
parent | 51883b3239de575223a1b50b3cb95f6120b4122a (diff) | |
download | mariadb-git-c961494444ccad68cb5b84da80397b5478cbeb03.tar.gz |
Added useful exit error code for programs using my_getopt in case
of an error in option handling. This can sometimes be useful in
scripts.
Changed some exit code names and corresponding numbers.
Fixed a bug in mysqld.cc, in replication related options.
Added a global flag in my_getopt, which can be set by any program
that is using my_getopt, which tells whether the client should
print the error message itself, or whether my_getopt should do it.
The default is that my_getopt will print the error messages.
Diffstat (limited to 'include/my_getopt.h')
-rw-r--r-- | include/my_getopt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/my_getopt.h b/include/my_getopt.h index ae12e921aa0..3b50fbe2ded 100644 --- a/include/my_getopt.h +++ b/include/my_getopt.h @@ -39,6 +39,7 @@ struct my_option }; extern char *disabled_my_option; +extern my_bool my_getopt_print_errors; extern int handle_options (int *argc, char ***argv, const struct my_option *longopts, |