Commit 392757a2 authored by unknown's avatar unknown

Fix a forgotten skip of space at line begin for the 'system' command.


BitKeeper/etc/logging_ok:
  Logging to logging@openlogging.org accepted
parent 63e75e7b
...@@ -39,6 +39,7 @@ hf@deer.mysql.r18.ru ...@@ -39,6 +39,7 @@ hf@deer.mysql.r18.ru
hf@genie.(none) hf@genie.(none)
igor@hundin.mysql.fi igor@hundin.mysql.fi
igor@rurik.mysql.com igor@rurik.mysql.com
ingo@mysql.com
jani@dsl-jkl1657.dial.inet.fi jani@dsl-jkl1657.dial.inet.fi
jani@hynda.(none) jani@hynda.(none)
jani@hynda.mysql.fi jani@hynda.mysql.fi
......
...@@ -2042,6 +2042,10 @@ static int ...@@ -2042,6 +2042,10 @@ static int
com_shell(String *buffer, char *line __attribute__((unused))) com_shell(String *buffer, char *line __attribute__((unused)))
{ {
char *shell_cmd; char *shell_cmd;
/* Skip space from line begin */
while (isspace(*line))
line++;
if (!(shell_cmd = strchr(line, ' '))) if (!(shell_cmd = strchr(line, ' ')))
{ {
put_info("Usage: \\! shell-command", INFO_ERROR); put_info("Usage: \\! shell-command", INFO_ERROR);
......
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