summaryrefslogtreecommitdiff
path: root/ndb
diff options
context:
space:
mode:
authorhartmut@mysql.com/linux.site <>2006-08-30 20:45:43 +0200
committerhartmut@mysql.com/linux.site <>2006-08-30 20:45:43 +0200
commite3d56d2cd32464e565a1daf9d338ad909aa60959 (patch)
tree49b59f50c19a32b8aafe7dad2b96f859bdcfd957 /ndb
parentc2d2b88b4cebf41f1f75ad13175fb1ae9cf53ab7 (diff)
downloadmariadb-git-e3d56d2cd32464e565a1daf9d338ad909aa60959.tar.gz
make DNS based hostname queries work (bug #17582)
Diffstat (limited to 'ndb')
-rw-r--r--ndb/tools/ndb_config.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ndb/tools/ndb_config.cpp b/ndb/tools/ndb_config.cpp
index 27ab6a182bb..135bec7ef72 100644
--- a/ndb/tools/ndb_config.cpp
+++ b/ndb/tools/ndb_config.cpp
@@ -145,7 +145,7 @@ struct Match
struct HostMatch : public Match
{
- virtual int eval(NdbMgmHandle, const Iter&);
+ virtual int eval(const Iter&);
};
struct Apply
@@ -402,7 +402,7 @@ Match::eval(const Iter& iter)
}
int
-HostMatch::eval(NdbMgmHandle h, const Iter& iter)
+HostMatch::eval(const Iter& iter)
{
const char* valc;