aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/x509/x509_crl.c
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2009-03-12 18:07:32 +0000
committerTobias Brunner <tobias@strongswan.org>2009-03-12 18:07:32 +0000
commitd25ce3701e066121d2026b0dfd72a794f3bbee29 (patch)
treeaa4833262e49963746a430d2a07381986395aae4 /src/libstrongswan/plugins/x509/x509_crl.c
parent9086102dfd4a9fe654af922d00bc5e5238547f21 (diff)
downloadstrongswan-d25ce3701e066121d2026b0dfd72a794f3bbee29.tar.bz2
strongswan-d25ce3701e066121d2026b0dfd72a794f3bbee29.tar.xz
printf hooks refactored to increase portability (i.e. support for platforms without glibc-compatible customizable printf - the Vstr string library is currently required on such platforms).
Diffstat (limited to 'src/libstrongswan/plugins/x509/x509_crl.c')
-rw-r--r--src/libstrongswan/plugins/x509/x509_crl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/plugins/x509/x509_crl.c b/src/libstrongswan/plugins/x509/x509_crl.c
index 62a4064cd..3bb097c4d 100644
--- a/src/libstrongswan/plugins/x509/x509_crl.c
+++ b/src/libstrongswan/plugins/x509/x509_crl.c
@@ -539,7 +539,7 @@ static bool is_newer(private_x509_crl_t *this, crl_t *that)
this_cert->get_validity(this_cert, &now, &this_update, NULL);
that_cert->get_validity(that_cert, &now, &that_update, NULL);
new = this_update > that_update;
- DBG1(" crl from %#T is %s - existing crl from %#T %s",
+ DBG1(" crl from %T is %s - existing crl from %T %s",
&this_update, FALSE, new ? "newer":"not newer",
&that_update, FALSE, new ? "replaced":"retained");
}