From: Martin Willi Date: Thu, 8 Dec 2011 16:19:10 +0000 (+0100) Subject: Get first XAuth backend if none configured X-Git-Tag: 5.0.0~338^2~9^2~279 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=59ee898326c7e54b01d02ed15bb707ff7a7a6b22;p=thirdparty%2Fstrongswan.git Get first XAuth backend if none configured --- diff --git a/src/libcharon/sa/authenticators/xauth/xauth_manager.c b/src/libcharon/sa/authenticators/xauth/xauth_manager.c index 618a0bdac5..432c9c0ab9 100644 --- a/src/libcharon/sa/authenticators/xauth/xauth_manager.c +++ b/src/libcharon/sa/authenticators/xauth/xauth_manager.c @@ -112,7 +112,8 @@ METHOD(xauth_manager_t, create_instance, xauth_method_t*, enumerator = this->methods->create_enumerator(this->methods); while (enumerator->enumerate(enumerator, &entry)) { - if (streq(name, entry->name) && role == entry->role) + if (role == entry->role && + (!name || streq(name, entry->name))) { method = entry->constructor(server, peer); if (method)