From eb239a47cc3fd91b0565142c0e6bee38928a114d Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Wed, 30 May 2007 09:00:26 +0100 Subject: [PATCH] include: Fix a typo in wincred.h. The Attribute field of the CREDENTIALA/W structs should instead be Attributes. --- include/wincred.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wincred.h b/include/wincred.h index 983bcb4b36..d041bb3841 100644 --- a/include/wincred.h +++ b/include/wincred.h @@ -65,7 +65,7 @@ typedef struct _CREDENTIALA LPBYTE CredentialBlob; DWORD Persist; DWORD AttributeCount; - PCREDENTIAL_ATTRIBUTEA Attribute; + PCREDENTIAL_ATTRIBUTEA Attributes; LPSTR TargetAlias; LPSTR UserName; } CREDENTIALA, *PCREDENTIALA; @@ -81,7 +81,7 @@ typedef struct _CREDENTIALW LPBYTE CredentialBlob; DWORD Persist; DWORD AttributeCount; - PCREDENTIAL_ATTRIBUTEW Attribute; + PCREDENTIAL_ATTRIBUTEW Attributes; LPWSTR TargetAlias; LPWSTR UserName; } CREDENTIALW, *PCREDENTIALW;