Commit 7c3b9a15 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

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

parent 93475667
......@@ -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 */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment