Commit 58d7de6e authored by unknown's avatar unknown

Indented comment properly

parent e9bb2b40
/* Copyright (C) 2000 MySQL AB /* Copyright (C) 2000-2004 MySQL AB
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
...@@ -409,6 +409,7 @@ static my_bool sql_connect(MYSQL *mysql, uint wait) ...@@ -409,6 +409,7 @@ static my_bool sql_connect(MYSQL *mysql, uint wait)
} }
} }
/* /*
Execute a command. Execute a command.
Return 0 on ok Return 0 on ok
...@@ -420,13 +421,13 @@ static int execute_commands(MYSQL *mysql,int argc, char **argv) ...@@ -420,13 +421,13 @@ static int execute_commands(MYSQL *mysql,int argc, char **argv)
{ {
const char *status; const char *status;
/* /*
MySQL documentation relies on the fact that mysqladmin will MySQL documentation relies on the fact that mysqladmin will
execute commands in the order specified, e.g. execute commands in the order specified, e.g.
mysqladmin -u root flush-privileges password "newpassword" mysqladmin -u root flush-privileges password "newpassword"
to reset a lost root password. to reset a lost root password.
If this behaviour is ever changed, Docs should be notified. If this behaviour is ever changed, Docs should be notified.
*/ */
for (; argc > 0 ; argv++,argc--) for (; argc > 0 ; argv++,argc--)
{ {
......
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