diff options
author | tnurnberg@sin.intern.azundris.com <> | 2007-09-15 04:45:20 +0200 |
---|---|---|
committer | tnurnberg@sin.intern.azundris.com <> | 2007-09-15 04:45:20 +0200 |
commit | 7451aaf48cd13d4bd2e8f3f46c2a15e35b04a104 (patch) | |
tree | 28572ba8a4ea5db35b3b2971f18422597f5a6511 /client/mysql_upgrade.c | |
parent | 9fead4bd6acd003be5402254f9dc0292a83ab272 (diff) | |
parent | 3c6ca8d6edf55764df93a831f61dc3855e82d91c (diff) | |
download | mariadb-git-7451aaf48cd13d4bd2e8f3f46c2a15e35b04a104.tar.gz |
Merge tnurnberg@bk-internal.mysql.com:/home/bk/mysql-5.0-maint
into mysql.com:/home/tnurnberg/15327/50-15327
Diffstat (limited to 'client/mysql_upgrade.c')
-rw-r--r-- | client/mysql_upgrade.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/client/mysql_upgrade.c b/client/mysql_upgrade.c index fb30c6f2613..1646f2baf51 100644 --- a/client/mysql_upgrade.c +++ b/client/mysql_upgrade.c @@ -88,8 +88,13 @@ static struct my_option my_long_options[]= {"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}, #endif - {"port", 'P', "Port number to use for connection.", 0, - 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, + {"port", 'P', "Port number to use for connection or 0 for default to, in " + "order of preference, my.cnf, $MYSQL_TCP_PORT, " +#if MYSQL_PORT_DEFAULT == 0 + "/etc/services, " +#endif + "built-in default (" STRINGIFY_ARG(MYSQL_PORT) ").", + 0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, {"protocol", OPT_MYSQL_PROTOCOL, "The protocol of connection (tcp,socket,pipe,memory).", 0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, |