aboutsummaryrefslogtreecommitdiffstats
path: root/src/pki/commands/print.c
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2011-12-15 16:56:07 +0100
committerTobias Brunner <tobias@strongswan.org>2012-03-20 17:31:25 +0100
commit4bc4e8e17b5f6c00bc060376bfbd5dbd34e47d48 (patch)
tree096f172b2867233b6cdc9fdcbfac67a1ea09b267 /src/pki/commands/print.c
parentf29a4f1c647151abc4a74d3ec4f029272ec0ec53 (diff)
downloadstrongswan-4bc4e8e17b5f6c00bc060376bfbd5dbd34e47d48.tar.bz2
strongswan-4bc4e8e17b5f6c00bc060376bfbd5dbd34e47d48.tar.xz
Added support for iKEIntermediate flag to ipsec pki.
Diffstat (limited to 'src/pki/commands/print.c')
-rw-r--r--src/pki/commands/print.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pki/commands/print.c b/src/pki/commands/print.c
index ee6f30c98..2bc80f96b 100644
--- a/src/pki/commands/print.c
+++ b/src/pki/commands/print.c
@@ -133,6 +133,10 @@ static void print_x509(x509_t *x509)
{
printf("clientAuth ");
}
+ if (flags & X509_IKE_INTERMEDIATE)
+ {
+ printf("iKEIntermediate ");
+ }
if (flags & X509_SELF_SIGNED)
{
printf("self-signed ");