Module: wine Branch: master Commit: 3ef4c7e1ccbbd331c5283e8ecd92cc51edc6333d URL: http://source.winehq.org/git/wine.git/?a=commit;h=3ef4c7e1ccbbd331c5283e8ecd...
Author: Juan Lang juan.lang@gmail.com Date: Thu Aug 30 17:52:50 2007 -0700
crypt32: Remove unneeded WINAPI from internal function.
---
dlls/crypt32/chain.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/crypt32/chain.c b/dlls/crypt32/chain.c index 24bb197..81dd6c4 100644 --- a/dlls/crypt32/chain.c +++ b/dlls/crypt32/chain.c @@ -206,7 +206,7 @@ typedef struct _CertificateChain LONG ref; } CertificateChain, *PCertificateChain;
-static inline BOOL WINAPI CRYPT_IsCertificateSelfSigned(PCCERT_CONTEXT cert) +static inline BOOL CRYPT_IsCertificateSelfSigned(PCCERT_CONTEXT cert) { return CertCompareCertificateName(cert->dwCertEncodingType, &cert->pCertInfo->Subject, &cert->pCertInfo->Issuer);