suppress listing of integrity algorithm if it is undefined

This commit is contained in:
Andreas Steffen
2008-05-17 21:52:58 +00:00
parent 15c508c708
commit a327ee9589
2 changed files with 13 additions and 7 deletions
+3 -3
View File
@@ -112,7 +112,7 @@ static host_t* get_lease(private_sql_attribute_t *this,
{
ip = ip_from_chunk(address);
DBG1(DBG_CFG, "reassigning address from valid lease "
"from pool %s", name);
"from pool '%s'", name);
}
}
e->destroy(e);
@@ -206,12 +206,12 @@ static host_t* create_lease(private_sql_attribute_t *this,
"UPDATE pools SET next = ? WHERE id = ?",
DB_BLOB, address, DB_UINT, pool);
DBG1(DBG_CFG, "assigning lease with new address "
"from pool %s", name);
"from pool '%s'", name);
}
else
{
DBG1(DBG_CFG, "reassigning address from expired lease "
"from pool %s", name);
"from pool '%s'", name);
}
}
}