Juan Lang : secur32: Report an error if libgnutls isn't found.

Alexandre Julliard julliard at winehq.org
Mon Jan 11 15:59:36 CST 2010


Module: wine
Branch: master
Commit: 7c3b9a1551e1876d42b8fa24a1a31b8696d593a9
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7c3b9a1551e1876d42b8fa24a1a31b8696d593a9

Author: Juan Lang <juan.lang at gmail.com>
Date:   Mon Jan 11 10:43:34 2010 -0800

secur32: Report an error if libgnutls isn't found.

---

 dlls/secur32/schannel.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/dlls/secur32/schannel.c b/dlls/secur32/schannel.c
index 27cb1b7..6205f1d 100644
--- a/dlls/secur32/schannel.c
+++ b/dlls/secur32/schannel.c
@@ -1451,7 +1451,11 @@ void SECUR32_deinitSchannelSP(void)
 
 #else /* SONAME_LIBGNUTLS */
 
-void SECUR32_initSchannelSP(void) {}
+void SECUR32_initSchannelSP(void)
+{
+    ERR("libgnutls not found, SSL connections will fail\n");
+}
+
 void SECUR32_deinitSchannelSP(void) {}
 
 #endif /* SONAME_LIBGNUTLS */




More information about the wine-cvs mailing list