From 1c32a71e873624ef67666c023ac99b83de4705c5 Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Mon, 25 Sep 2006 06:19:40 +0000 Subject: [PATCH] added ID_ANY check to matches_binary() --- src/libstrongswan/utils/identification.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libstrongswan/utils/identification.c b/src/libstrongswan/utils/identification.c index e193a3e59..4fbda0afd 100644 --- a/src/libstrongswan/utils/identification.c +++ b/src/libstrongswan/utils/identification.c @@ -715,6 +715,11 @@ static bool equals_dn(private_identification_t *this, private_identification_t * static bool matches_binary(private_identification_t *this, private_identification_t *other, int *wildcards) { + if (other->type == ID_ANY) + { + *wildcards = MAX_WILDCARDS; + return TRUE; + } *wildcards = 0; return this->type == other->type && chunk_equals(this->encoded, other->encoded); }