summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorunknown <monty@mashka.mysql.fi>2004-03-04 10:57:30 +0200
committerunknown <monty@mashka.mysql.fi>2004-03-04 10:57:30 +0200
commit58d7de6e04ecd1eb9774d565fe38ecc98a8ce2ed (patch)
tree9980e7b5de58a67f72cd1bbf5fa59705c6b0c0ff /client
parente9bb2b40c17c92c2abd29fa23380b91971dd48d1 (diff)
downloadmariadb-git-58d7de6e04ecd1eb9774d565fe38ecc98a8ce2ed.tar.gz
Indented comment properly
Diffstat (limited to 'client')
-rw-r--r--client/mysqladmin.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/client/mysqladmin.c b/client/mysqladmin.c
index 6bd2d3caad1..9fbf7e2d64d 100644
--- a/client/mysqladmin.c
+++ b/client/mysqladmin.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000 MySQL AB
+/* Copyright (C) 2000-2004 MySQL AB
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
@@ -409,6 +409,7 @@ static my_bool sql_connect(MYSQL *mysql, uint wait)
}
}
+
/*
Execute a command.
Return 0 on ok
@@ -420,13 +421,13 @@ static int execute_commands(MYSQL *mysql,int argc, char **argv)
{
const char *status;
-/*
- MySQL documentation relies on the fact that mysqladmin will
- execute commands in the order specified, e.g.
- mysqladmin -u root flush-privileges password "newpassword"
- to reset a lost root password.
- If this behaviour is ever changed, Docs should be notified.
-*/
+ /*
+ MySQL documentation relies on the fact that mysqladmin will
+ execute commands in the order specified, e.g.
+ mysqladmin -u root flush-privileges password "newpassword"
+ to reset a lost root password.
+ If this behaviour is ever changed, Docs should be notified.
+ */
for (; argc > 0 ; argv++,argc--)
{