Adding DBG_LIB to all calls of libstrongswan's version of DBG*.

This commit is contained in:
Tobias Brunner
2010-04-06 12:47:40 +02:00
parent 9ed6341d3f
commit 8b0e09103b
82 changed files with 660 additions and 576 deletions
@@ -65,7 +65,7 @@ plugin_t *attr_sql_plugin_create()
uri = lib->settings->get_str(lib->settings, "libhydra.plugins.attr-sql.database", NULL);
if (!uri)
{
DBG1("attr-sql plugin: database URI not set");
DBG1(DBG_LIB, "attr-sql plugin: database URI not set");
return NULL;
}
@@ -76,7 +76,7 @@ plugin_t *attr_sql_plugin_create()
this->db = lib->db->create(lib->db, uri);
if (!this->db)
{
DBG1("attr-sql plugin failed to connect to database");
DBG1(DBG_LIB, "attr-sql plugin failed to connect to database");
free(this);
return NULL;
}