aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/plugins/sql/sql_attribute.c
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2008-05-17 21:52:58 +0000
committerAndreas Steffen <andreas.steffen@strongswan.org>2008-05-17 21:52:58 +0000
commita327ee958932329ac6c429a3a37fbc8bdb403aac (patch)
treee0e5950078edcd79024baa1fc248da57bfc06ea2 /src/charon/plugins/sql/sql_attribute.c
parent15c508c7081b18c0f4bff1f72841c987194fe52e (diff)
downloadstrongswan-a327ee958932329ac6c429a3a37fbc8bdb403aac.tar.bz2
strongswan-a327ee958932329ac6c429a3a37fbc8bdb403aac.tar.xz
suppress listing of integrity algorithm if it is undefined
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);
}
}
}