aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/plugins/sql/sql_attribute.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/charon/plugins/sql/sql_attribute.c')
-rw-r--r--src/charon/plugins/sql/sql_attribute.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/charon/plugins/sql/sql_attribute.c b/src/charon/plugins/sql/sql_attribute.c
index c5a9e05f1..45c0750c7 100644
--- a/src/charon/plugins/sql/sql_attribute.c
+++ b/src/charon/plugins/sql/sql_attribute.c
@@ -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);
}
}
}