}
virMutexLock(&conn->lock);
- /* TODO search by UUID first as they are better differenciators */
+ /* TODO search by UUID first as they are better differentiators */
ret = (virDomainPtr) virHashLookup(conn->domains, name);
/* TODO check the UUID */
virConnectPtr conn = domain->conn;
DEBUG("release domain %p %s", domain, domain->name);
- /* TODO search by UUID first as they are better differenciators */
+ /* TODO search by UUID first as they are better differentiators */
if (virHashRemoveEntry(conn->domains, domain->name, NULL) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(VIR_ERR_INTERNAL_ERROR, "%s",
}
virMutexLock(&conn->lock);
- /* TODO search by UUID first as they are better differenciators */
+ /* TODO search by UUID first as they are better differentiators */
ret = (virNetworkPtr) virHashLookup(conn->networks, name);
/* TODO check the UUID */
virConnectPtr conn = network->conn;
DEBUG("release network %p %s", network, network->name);
- /* TODO search by UUID first as they are better differenciators */
+ /* TODO search by UUID first as they are better differentiators */
if (virHashRemoveEntry(conn->networks, network->name, NULL) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(VIR_ERR_INTERNAL_ERROR, "%s",
}
virMutexLock(&conn->lock);
- /* TODO search by UUID first as they are better differenciators */
+ /* TODO search by UUID first as they are better differentiators */
ret = (virStoragePoolPtr) virHashLookup(conn->storagePools, name);
/* TODO check the UUID */
virConnectPtr conn = pool->conn;
DEBUG("release pool %p %s", pool, pool->name);
- /* TODO search by UUID first as they are better differenciators */
+ /* TODO search by UUID first as they are better differentiators */
if (virHashRemoveEntry(conn->storagePools, pool->name, NULL) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(VIR_ERR_INTERNAL_ERROR, "%s",
virConnectPtr conn = vol->conn;
DEBUG("release vol %p %s", vol, vol->name);
- /* TODO search by UUID first as they are better differenciators */
+ /* TODO search by UUID first as they are better differentiators */
if (virHashRemoveEntry(conn->storageVols, vol->key, NULL) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(VIR_ERR_INTERNAL_ERROR, "%s",
}
virMutexLock(&conn->lock);
- /* TODO search by UUID first as they are better differenciators */
+ /* TODO search by UUID first as they are better differentiators */
ret = (virNWFilterPtr) virHashLookup(conn->nwfilterPools, name);
/* TODO check the UUID */
virConnectPtr conn = pool->conn;
DEBUG("release pool %p %s", pool, pool->name);
- /* TODO search by UUID first as they are better differenciators */
+ /* TODO search by UUID first as they are better differentiators */
if (virHashRemoveEntry(conn->nwfilterPools, pool->name, NULL) < 0) {
virMutexUnlock(&conn->lock);
virLibConnError(VIR_ERR_INTERNAL_ERROR, "%s",