diff options
author | unknown <hartmut@mysql.com> | 2005-09-02 22:52:52 +0200 |
---|---|---|
committer | unknown <hartmut@mysql.com> | 2005-09-02 22:52:52 +0200 |
commit | c66167d4472834ea2b6afec204c26e37c99dac97 (patch) | |
tree | 9f682eae3fcb69d554e6b559cc689d015f28f0f8 /client | |
parent | f1941de5e3c62a2dae8fb40dd97d3cf352ac9293 (diff) | |
download | mariadb-git-c66167d4472834ea2b6afec204c26e37c99dac97.tar.gz |
fix for BUG#12958 : mysqlimport with -L option crashing on HP-UX
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqlimport.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/mysqlimport.c b/client/mysqlimport.c index 24392fedc1f..4bf4974748b 100644 --- a/client/mysqlimport.c +++ b/client/mysqlimport.c @@ -37,8 +37,9 @@ static char *add_load_option(char *ptr,const char *object, const char *statement); static my_bool verbose=0,lock_tables=0,ignore_errors=0,opt_delete=0, - replace=0,silent=0,ignore=0,opt_compress=0,opt_local_file=0, + replace=0,silent=0,ignore=0,opt_compress=0, opt_low_priority= 0, tty_password= 0; +static uint opt_local_file=0; static MYSQL mysql_connection; static char *opt_password=0, *current_user=0, *current_host=0, *current_db=0, *fields_terminated=0, |