aboutsummaryrefslogtreecommitdiffstats
path: root/src/libhydra/attributes/attribute_manager.c
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2010-03-31 17:28:46 +0200
committerTobias Brunner <tobias@strongswan.org>2010-04-06 12:47:40 +0200
commit8b0e09103b5e7e55b20380c44f093b1cef95480c (patch)
tree2b231876b34c525a20ad2b5fc15d8aabb57eba99 /src/libhydra/attributes/attribute_manager.c
parent9ed6341d3f1f48c9528a21b9d2da83bfc05bb756 (diff)
downloadstrongswan-8b0e09103b5e7e55b20380c44f093b1cef95480c.tar.bz2
strongswan-8b0e09103b5e7e55b20380c44f093b1cef95480c.tar.xz
Adding DBG_LIB to all calls of libstrongswan's version of DBG*.
Diffstat (limited to 'src/libhydra/attributes/attribute_manager.c')
-rw-r--r--src/libhydra/attributes/attribute_manager.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libhydra/attributes/attribute_manager.c b/src/libhydra/attributes/attribute_manager.c
index 91fa1ebb5..980f47551 100644
--- a/src/libhydra/attributes/attribute_manager.c
+++ b/src/libhydra/attributes/attribute_manager.c
@@ -83,7 +83,7 @@ static host_t* acquire_address(private_attribute_manager_t *this,
if (!host)
{
- DBG1("acquiring address from pool '%s' failed", pool);
+ DBG1(DBG_LIB, "acquiring address from pool '%s' failed", pool);
}
return host;
}
@@ -113,7 +113,7 @@ static void release_address(private_attribute_manager_t *this,
if (!found)
{
- DBG1("releasing address to pool '%s' failed", pool);
+ DBG1(DBG_LIB, "releasing address to pool '%s' failed", pool);
}
}
@@ -206,7 +206,7 @@ static attribute_handler_t* handle(private_attribute_manager_t *this,
if (!handled)
{
- DBG1("handling %N attribute failed",
+ DBG1(DBG_LIB, "handling %N attribute failed",
configuration_attribute_type_names, type);
}
return handled;