summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorhf@deer.(none) <>2003-09-19 14:44:31 +0500
committerhf@deer.(none) <>2003-09-19 14:44:31 +0500
commita2dbfaefa366792fd1ed7e0a331212997fe43ceb (patch)
tree3c07a62a6ce161b611b85e52602cd8585ba0ad6d /tools
parent0868446b3e457e1ce32f63cadff4ef4c8b17344a (diff)
downloadmariadb-git-a2dbfaefa366792fd1ed7e0a331212997fe43ceb.tar.gz
SCRUM
embedded library hash_insert renamed to my_hash_insert to avoid name intersection with another libraries is there better idea?
Diffstat (limited to 'tools')
-rw-r--r--tools/mysqlmanager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/mysqlmanager.c b/tools/mysqlmanager.c
index 70382c29735..f1efd3be3eb 100644
--- a/tools/mysqlmanager.c
+++ b/tools/mysqlmanager.c
@@ -818,7 +818,7 @@ HANDLE_DECL(handle_def_exec)
update_req_len(e);
hash_delete(&exec_hash,(byte*)old_e);
}
- hash_insert(&exec_hash,(byte*)e);
+ my_hash_insert(&exec_hash,(byte*)e);
pthread_mutex_unlock(&lock_exec_hash);
client_msg(&thd->net,MANAGER_OK,"Exec definition created");
return 0;
@@ -1666,7 +1666,7 @@ static void init_user_hash()
}
else
{
- hash_insert(&user_hash,(gptr)u);
+ my_hash_insert(&user_hash,(gptr)u);
}
}
my_fclose(f, MYF(0));