Fix to the hashtable support

Renamed alloc_dcb, free_dcb and connect_dcb to be more consistant, e.g. dcb_alloc, dcb_free and dcb_connect
This commit is contained in:
Mark Riddoch
2013-06-24 15:09:37 +02:00
parent 1d3da6d18f
commit 2ec19bf7ca
7 changed files with 28 additions and 51 deletions

View File

@ -210,7 +210,7 @@ int i;
* connection in the client->dcb
*/
client->dcb = connect_dcb(candidate->server, session, candidate->server->protocol);
client->dcb = dcb_connect(candidate->server, session, candidate->server->protocol);
/* Add this session to the list of active sessions */
spinlock_acquire(&inst->lock);