diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2006-11-01 17:28:01 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2006-11-01 17:28:01 +0000 |
commit | 1f9160614a816131dca99dfa51b5dda0f30b043a (patch) | |
tree | 3323398abd852576260a6cdf67150436456ae7b9 /src/charon | |
parent | 9ba5e22e31a135abf775dcd90c86e16683e756b2 (diff) | |
download | strongswan-1f9160614a816131dca99dfa51b5dda0f30b043a.tar.bz2 strongswan-1f9160614a816131dca99dfa51b5dda0f30b043a.tar.xz |
cosmetics
Diffstat (limited to 'src/charon')
-rw-r--r-- | src/charon/config/policies/local_policy_store.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/charon/config/policies/local_policy_store.c b/src/charon/config/policies/local_policy_store.c index 6c841b4d6..7d2fad110 100644 --- a/src/charon/config/policies/local_policy_store.c +++ b/src/charon/config/policies/local_policy_store.c @@ -107,7 +107,7 @@ static policy_t *get_policy(private_local_policy_store_t *this, policy_t *candidate; policy_t *found = NULL; - DBG2(DBG_CFG, "searching policy for ID pair %D...%D", my_id, other_id); + DBG2(DBG_CFG, "searching policy for ID pair '%D'...'%D'", my_id, other_id); pthread_mutex_lock(&(this->mutex)); iterator = this->policies->create_iterator(this->policies, TRUE); @@ -142,7 +142,7 @@ static policy_t *get_policy(private_local_policy_store_t *this, continue; } - DBG2(DBG_CFG, "candidate policy '%s': %D...%D (prio=%d)", + DBG2(DBG_CFG, "candidate policy '%s': '%D'...'%D' (prio=%d)", candidate->get_name(candidate), candidate_my_id, candidate_other_id, prio); @@ -157,7 +157,7 @@ static policy_t *get_policy(private_local_policy_store_t *this, if (found) { - DBG1(DBG_CFG, "found matching policy '%s': %D...%D (prio=%d)", + DBG1(DBG_CFG, "found matching policy '%s': '%D'...'%D' (prio=%d)", found->get_name(found), found->get_my_id(found), found->get_other_id(found), best_prio); /* give out a new reference to it */ |