From c6cf4beedb54e4eea04653c1483830c68302583f Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 28 Nov 2005 19:44:55 -0800 Subject: [PATCH] Fixed typo where I did --replace-names intead of --replace. Thanks Paul for pointing it out :) client/mysqldump.c: Oops, obvious typo aye? Should hae had --replace not --replace-names --- client/mysqldump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/mysqldump.c b/client/mysqldump.c index 6556da3b3f4..5d3c542dc4d 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -340,7 +340,7 @@ static struct my_option my_long_options[] = {"quote-names",'Q', "Quote table and column names with backticks (`).", (gptr*) &opt_quoted, (gptr*) &opt_quoted, 0, GET_BOOL, NO_ARG, 1, 0, 0, 0, 0, 0}, - {"replace-names", OPT_MYSQL_REPLACE_INTO, "Use REPLACE INTO instead of INSERT INTO.", + {"replace", OPT_MYSQL_REPLACE_INTO, "Use REPLACE INTO instead of INSERT INTO.", (gptr*) &opt_replace_into, (gptr*) &opt_replace_into, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0}, {"result-file", 'r',