1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00
embedded library
hash_insert renamed to my_hash_insert to avoid name intersection
with another libraries
is there better idea?
This commit is contained in:
hf@deer.(none)
2003-09-19 14:44:31 +05:00
parent 0868446b3e
commit a2dbfaefa3
20 changed files with 32 additions and 32 deletions

View File

@ -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));