diff options
author | unknown <konstantin@mysql.com> | 2005-01-11 13:53:10 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2005-01-11 13:53:10 +0300 |
commit | 4801c2e62f25240d7c27818cbc46568b07709d68 (patch) | |
tree | 900f39c080e022ff69cdff8717b456c6498988ea /mysys/hash.c | |
parent | fe8c6a4a032195ae024cf4a8ede675299789a79b (diff) | |
download | mariadb-git-4801c2e62f25240d7c27818cbc46568b07709d68.tar.gz |
A fix for linking failure of MySQL client when linking with imap libraries
(Bug#7428) (renamed: hash_reset -> my_hash_reset)
mysys/hash.c:
renamed: hash_reset -> my_hash_reset
sql/sql_class.h:
hash_reset -> my_hash_reset
Diffstat (limited to 'mysys/hash.c')
-rw-r--r-- | mysys/hash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysys/hash.c b/mysys/hash.c index 451bc1eb7f5..6091ef39a4e 100644 --- a/mysys/hash.c +++ b/mysys/hash.c @@ -122,13 +122,13 @@ void hash_free(HASH *hash) Delete all elements from the hash (the hash itself is to be reused). SYNOPSIS - hash_reset() + my_hash_reset() hash the hash to delete elements of */ -void hash_reset(HASH *hash) +void my_hash_reset(HASH *hash) { - DBUG_ENTER("hash_reset"); + DBUG_ENTER("my_hash_reset"); DBUG_PRINT("enter",("hash: 0x%lxd",hash)); hash_free_elements(hash); |