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

This commit is contained in:
Juan Lang 2010-01-11 10:43:34 -08:00 committed by Alexandre Julliard
parent 93475667a0
commit 7c3b9a1551

View file

@ -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 */