summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSinisa@sinisa.nasamreza.org <>2004-03-11 15:35:08 +0200
committerSinisa@sinisa.nasamreza.org <>2004-03-11 15:35:08 +0200
commit7e5a43af8521f0ca6cc16d27485800b4e60bd178 (patch)
tree2ecce07f02dee311bd2a69a64066b3c3977d8abd
parent0bbbdb0530ed3d10634b752a0aebf8b26e683cf8 (diff)
downloadmariadb-git-7e5a43af8521f0ca6cc16d27485800b4e60bd178.tar.gz
mysqldump.c:
reverting fix
-rw-r--r--client/mysqldump.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/client/mysqldump.c b/client/mysqldump.c
index a96f24dc97b..f93c791564e 100644
--- a/client/mysqldump.c
+++ b/client/mysqldump.c
@@ -78,7 +78,7 @@ static my_bool verbose=0,tFlag=0,cFlag=0,dFlag=0,quick=0, extended_insert = 0,
opt_alldbs=0,opt_create_db=0,opt_first_slave=0,
opt_autocommit=0,opt_master_data,opt_disable_keys=0,opt_xml=0,
opt_delete_master_logs=0, tty_password=0,
- opt_single_transaction=0, opt_comments= 0, opt_local_infile= 0;
+ opt_single_transaction=0, opt_comments= 0;
static MYSQL mysql_connection,*sock=0;
static char insert_pat[12 * 1024],*opt_password=0,*current_user=0,
*current_host=0,*path=0,*fields_terminated=0,
@@ -170,9 +170,6 @@ static struct my_option my_long_options[] =
{"lines-terminated-by", OPT_LTB, "Lines in the i.file are terminated by ...",
(gptr*) &lines_terminated, (gptr*) &lines_terminated, 0, GET_STR,
REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
- {"local-infile", OPT_LOCAL_INFILE, "Enable/disable LOAD DATA LOCAL INFILE.",
- (gptr*) &opt_local_infile,
- (gptr*) &opt_local_infile, 0, GET_BOOL, OPT_ARG, 0, 0, 0, 0, 0, 0},
{"lock-tables", 'l', "Lock all tables for read.", (gptr*) &lock_tables,
(gptr*) &lock_tables, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
{"master-data", OPT_MASTER_DATA,