aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2007-04-12 16:36:12 +0000
committerAndreas Steffen <andreas.steffen@strongswan.org>2007-04-12 16:36:12 +0000
commitf865d34b3542cbec83c923aa6a98fe74b9d8cba6 (patch)
tree7100a85081a08e375ddc8067a2c6118872d4df53
parent6a132a53e57ff997184ca139d34a0da22fd1100c (diff)
downloadstrongswan-f865d34b3542cbec83c923aa6a98fe74b9d8cba6.tar.bz2
strongswan-f865d34b3542cbec83c923aa6a98fe74b9d8cba6.tar.xz
fixed output of list_certinfos()
-rw-r--r--src/libstrongswan/crypto/ca.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/crypto/ca.c b/src/libstrongswan/crypto/ca.c
index 2f86161a6..8f39f08cc 100644
--- a/src/libstrongswan/crypto/ca.c
+++ b/src/libstrongswan/crypto/ca.c
@@ -253,7 +253,7 @@ static void list_certinfos(private_ca_info_t *this, FILE *out, bool utc)
{
fprintf(out, "ok (expires in %V)\n", &now, &nextUpdate);
}
- fprintf(out, " serial: %#B, %N", &serial,
+ fprintf(out, " serial: %#B, %N\n", &serial,
cert_status_names, certinfo->get_status(certinfo));
}
iterator->destroy(iterator);