[4/4] secur32: Make schannel implementation of QueryCredentialsAttributes(SECPKG_CRED_ATTR_NAMES) return SEC_E_NO_CREDENTIALS. Resend.

Dmitry Timoshkov dmitry at baikal.ru
Wed Dec 11 23:13:52 CST 2013


to follow more recent Windows behaviour.
---
 dlls/secur32/schannel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/secur32/schannel.c b/dlls/secur32/schannel.c
index 5b86a75..f7ede90 100644
--- a/dlls/secur32/schannel.c
+++ b/dlls/secur32/schannel.c
@@ -307,7 +307,7 @@ static SECURITY_STATUS SEC_ENTRY schan_QueryCredentialsAttributesA(
     {
     case SECPKG_CRED_ATTR_NAMES:
         FIXME("SECPKG_CRED_ATTR_NAMES: stub\n");
-        ret = SEC_E_UNSUPPORTED_FUNCTION;
+        ret = SEC_E_NO_CREDENTIALS;
         break;
     default:
         ret = schan_QueryCredentialsAttributes(phCredential, ulAttribute,
-- 
1.8.5.1




More information about the wine-patches mailing list