Module: wine Branch: master Commit: ca894127f82e9687cfbf586e55223b9b8832202b URL: http://source.winehq.org/git/wine.git/?a=commit;h=ca894127f82e9687cfbf586e55...
Author: Francois Gouget fgouget@free.fr Date: Fri Oct 25 11:45:09 2013 +0200
crypt32: Make add_cert_to_store() static.
---
dlls/crypt32/cert.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/crypt32/cert.c b/dlls/crypt32/cert.c index 1858a1b..bc0f26d 100644 --- a/dlls/crypt32/cert.c +++ b/dlls/crypt32/cert.c @@ -162,7 +162,7 @@ static const context_vtbl_t cert_vtbl = { Cert_clone };
-BOOL WINAPI add_cert_to_store(WINECRYPT_CERTSTORE *store, const CERT_CONTEXT *cert, +static BOOL WINAPI add_cert_to_store(WINECRYPT_CERTSTORE *store, const CERT_CONTEXT *cert, DWORD add_disposition, BOOL use_link, PCCERT_CONTEXT *ret_context) { const CERT_CONTEXT *existing = NULL;