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
@@ -97,7 +97,7 @@ static padlock_feature_t get_padlock_features()
return d;
}
}
DBG1("Padlock not found, CPU is %s", vendor);
DBG1(DBG_LIB, "Padlock not found, CPU is %s", vendor);
return 0;
}
@@ -143,7 +143,7 @@ plugin_t *padlock_plugin_create()
free(this);
return NULL;
}
DBG1("Padlock found, supports:%s%s%s%s%s, enabled:%s%s%s%s%s",
DBG1(DBG_LIB, "Padlock found, supports:%s%s%s%s%s, enabled:%s%s%s%s%s",
this->features & PADLOCK_RNG_AVAILABLE ? " RNG" : "",
this->features & PADLOCK_ACE_AVAILABLE ? " ACE" : "",
this->features & PADLOCK_ACE2_AVAILABLE ? " ACE2" : "",