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 /client/mysqlimport.c | |
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 'client/mysqlimport.c')
-rw-r--r-- | client/mysqlimport.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/client/mysqlimport.c b/client/mysqlimport.c index bc7860a052d..1933ea41bcf 100644 --- a/client/mysqlimport.c +++ b/client/mysqlimport.c @@ -25,7 +25,7 @@ ** * * ** ************************* */ -#define IMPORT_VERSION "3.3" +#define IMPORT_VERSION "3.4" #include "client_priv.h" #include "mysql_version.h" @@ -204,11 +204,8 @@ static int get_options(int *argc, char ***argv) int ho_error; if ((ho_error=handle_options(argc, argv, my_long_options, get_one_option))) - { - printf("%s: handle_options() failed with error %d\n", my_progname, - ho_error); - exit(1); - } + exit(ho_error); + if (enclosed && opt_enclosed) { fprintf(stderr, "You can't use ..enclosed.. and ..optionally-enclosed.. at the same time.\n"); |