From 884eed0f6e19484b3fec997257a1049a2e133cef Mon Sep 17 00:00:00 2001 From: cantor Date: Sat, 8 Mar 2008 03:43:55 +0000 Subject: [PATCH] Add explicit none option for transport authn. git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/trunk@2764 cb58f699-b61c-0410-a6fe-9272a202ed29 --- shibsp/binding/impl/SOAPClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shibsp/binding/impl/SOAPClient.cpp b/shibsp/binding/impl/SOAPClient.cpp index 63e7405..3cef3d4 100644 --- a/shibsp/binding/impl/SOAPClient.cpp +++ b/shibsp/binding/impl/SOAPClient.cpp @@ -159,7 +159,7 @@ void SOAPClient::prepareTransport(SOAPTransport& transport) type = SOAPTransport::transport_auth_ntlm; else if (!strcmp(authType.second,"gss")) type = SOAPTransport::transport_auth_gss; - else + else if (strcmp(authType.second,"none")) log.error("unknown authType (%s) specified for RelyingParty", authType.second); if (type > SOAPTransport::transport_auth_none) { if (transport.setAuth(type,username.second,password.second)) -- 2.1.4