diff options
author | unknown <gni/root@dev3-127.(none)> | 2006-09-22 20:13:03 +0800 |
---|---|---|
committer | unknown <gni/root@dev3-127.(none)> | 2006-09-22 20:13:03 +0800 |
commit | 6cdf3c65a4d0c2e48de0693f40233eb3e70a8b4c (patch) | |
tree | e59f36da6ca0135e5a44e80bb5963cec7fc8a3b1 /ndb/include | |
parent | 50f0c7cdfd8cd5d1c5be23b079b670243abef42b (diff) | |
download | mariadb-git-6cdf3c65a4d0c2e48de0693f40233eb3e70a8b4c.tar.gz |
BUG#21585 The --help option shows a screen of command options for ndbd, ndb_mgmd, ndb_mgm
and other commands related to ndb. For all of these, the help screen contains
"Ndb.cfg" string. Now i change the "Ndb.cfg" to "my.cnf" because "Ndb.cfg" is obsolete.
ndb/include/util/ndb_opts.h:
Change help info from "Ndb.cfg" string to "my.cnf" string in the header file.
ndb/test/ndbapi/flexScan.cpp:
Change help info from including "Ndb.cfg" to "my.cnf".
ndb/tools/ndb_config.cpp:
Change help info from including "Ndb.cfg" to "my.cnf".
Diffstat (limited to 'ndb/include')
-rw-r--r-- | ndb/include/util/ndb_opts.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/include/util/ndb_opts.h b/ndb/include/util/ndb_opts.h index 08ab4a2e9df..053cc8613f7 100644 --- a/ndb/include/util/ndb_opts.h +++ b/ndb/include/util/ndb_opts.h @@ -58,7 +58,7 @@ const char *opt_debug= 0; { "ndb-connectstring", OPT_NDB_CONNECTSTRING, \ "Set connect string for connecting to ndb_mgmd. " \ "Syntax: \"[nodeid=<id>;][host=]<hostname>[:<port>]\". " \ - "Overides specifying entries in NDB_CONNECTSTRING and Ndb.cfg", \ + "Overrides specifying entries in NDB_CONNECTSTRING and my.cnf", \ (gptr*) &opt_ndb_connectstring, (gptr*) &opt_ndb_connectstring, \ 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0 },\ { "ndb-mgmd-host", OPT_NDB_MGMD, \ |