Commit 1c108906 authored by Davi Arnaut's avatar Davi Arnaut

Post-merge fix: Remove Remove unused variable.

client/mysql_upgrade.c:
  Remove Remove unused variable.
parents 2c01793a d622b04f
...@@ -354,8 +354,6 @@ static void find_tool(char *tool_executable_name, const char *tool_name, ...@@ -354,8 +354,6 @@ static void find_tool(char *tool_executable_name, const char *tool_name,
const char *self_name) const char *self_name)
{ {
char *last_fn_libchar; char *last_fn_libchar;
size_t path_len;
DYNAMIC_STRING ds_tmp; DYNAMIC_STRING ds_tmp;
DBUG_ENTER("find_tool"); DBUG_ENTER("find_tool");
DBUG_PRINT("enter", ("progname: %s", my_progname)); DBUG_PRINT("enter", ("progname: %s", my_progname));
...@@ -375,6 +373,8 @@ static void find_tool(char *tool_executable_name, const char *tool_name, ...@@ -375,6 +373,8 @@ static void find_tool(char *tool_executable_name, const char *tool_name,
} }
else else
{ {
int len;
/* /*
mysql_upgrade was run absolutely or relatively. We can find a sibling mysql_upgrade was run absolutely or relatively. We can find a sibling
by replacing our name after the LIBCHAR with the new tool name. by replacing our name after the LIBCHAR with the new tool name.
...@@ -396,10 +396,10 @@ static void find_tool(char *tool_executable_name, const char *tool_name, ...@@ -396,10 +396,10 @@ static void find_tool(char *tool_executable_name, const char *tool_name,
last_fn_libchar -= 6; last_fn_libchar -= 6;
} }
len= last_fn_libchar - self_name;
my_snprintf(tool_executable_name, FN_REFLEN, "%.*s%c%s", my_snprintf(tool_executable_name, FN_REFLEN, "%.*s%c%s",
(last_fn_libchar - self_name), self_name, len, self_name, FN_LIBCHAR, tool_name);
FN_LIBCHAR,
tool_name);
} }
verbose("Looking for '%s' as: %s", tool_name, tool_executable_name); verbose("Looking for '%s' as: %s", tool_name, tool_executable_name);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment