From 01a08cb2e7b32bc4262c2fea376519fe3d8e3a7d Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Wed, 4 Jul 2007 13:36:41 +0000 Subject: [PATCH] output crl uri as a printable string instead of a binary blob --- src/libstrongswan/crypto/ca.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstrongswan/crypto/ca.c b/src/libstrongswan/crypto/ca.c index 97c184bb8..a78590954 100644 --- a/src/libstrongswan/crypto/ca.c +++ b/src/libstrongswan/crypto/ca.c @@ -345,7 +345,7 @@ static void add_crluri(private_ca_info_t *this, chunk_t uri) strncasecmp(uri.ptr, "file", 4) != 0 && strncasecmp(uri.ptr, "ftp", 3) != 0)) { - DBG1(" invalid crl uri '%#B'", &uri); + DBG1(" invalid crl uri '%.*s'", uri.len, uri.ptr); return; } else