Module: wine Branch: master Commit: eb239a47cc3fd91b0565142c0e6bee38928a114d URL: http://source.winehq.org/git/wine.git/?a=commit;h=eb239a47cc3fd91b0565142c0e...
Author: Rob Shearman rob@codeweavers.com Date: Wed May 30 09:00:26 2007 +0100
include: Fix a typo in wincred.h.
The Attribute field of the CREDENTIALA/W structs should instead be Attributes.
---
include/wincred.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/wincred.h b/include/wincred.h index 983bcb4..d041bb3 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;