tls_schannel: [style] use LF for EOL, not CR+LF

This commit is contained in:
Dmitry Podgorny
2014-09-06 22:32:16 +03:00
parent 65d2535302
commit e7f87c652e

View File

@@ -75,11 +75,11 @@ tls_t *tls_new(xmpp_ctx_t *ctx, sock_t sock)
SecPkgCred_CipherStrengths spc_cs; SecPkgCred_CipherStrengths spc_cs;
SecPkgCred_SupportedProtocols spc_sp; SecPkgCred_SupportedProtocols spc_sp;
OSVERSIONINFO osvi; OSVERSIONINFO osvi;
memset(&osvi, 0, sizeof(osvi)); memset(&osvi, 0, sizeof(osvi));
osvi.dwOSVersionInfoSize = sizeof(osvi); osvi.dwOSVersionInfoSize = sizeof(osvi);
GetVersionEx(&osvi); GetVersionEx(&osvi);
/* no TLS support on win9x/me, despite what anyone says */ /* no TLS support on win9x/me, despite what anyone says */
@@ -148,26 +148,26 @@ tls_t *tls_new(xmpp_ctx_t *ctx, sock_t sock)
/* This bunch of queries should trip up wine until someone fixes /* This bunch of queries should trip up wine until someone fixes
* schannel support there */ * schannel support there */
ret = tls->sft->QueryCredentialsAttributes(&(tls->hcred), SECPKG_ATTR_SUPPORTED_ALGS, &spc_sa); ret = tls->sft->QueryCredentialsAttributes(&(tls->hcred), SECPKG_ATTR_SUPPORTED_ALGS, &spc_sa);
if (ret != SEC_E_OK) if (ret != SEC_E_OK)
{ {
tls_free(tls); tls_free(tls);
return NULL; return NULL;
} }
ret = tls->sft->QueryCredentialsAttributes(&(tls->hcred), SECPKG_ATTR_CIPHER_STRENGTHS, &spc_cs); ret = tls->sft->QueryCredentialsAttributes(&(tls->hcred), SECPKG_ATTR_CIPHER_STRENGTHS, &spc_cs);
if (ret != SEC_E_OK) if (ret != SEC_E_OK)
{ {
tls_free(tls); tls_free(tls);
return NULL; return NULL;
} }
ret = tls->sft->QueryCredentialsAttributes(&(tls->hcred), SECPKG_ATTR_SUPPORTED_PROTOCOLS, &spc_sp); ret = tls->sft->QueryCredentialsAttributes(&(tls->hcred), SECPKG_ATTR_SUPPORTED_PROTOCOLS, &spc_sp);
if (ret != SEC_E_OK) if (ret != SEC_E_OK)
{ {
tls_free(tls); tls_free(tls);
return NULL; return NULL;
} }
return tls; return tls;
} }