提交 a0cb628b 编写于 作者: M Matt Caswell

Tweak a style issue

Reviewed-by: NRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3091)
上级 90049cea
...@@ -1799,7 +1799,7 @@ int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written) ...@@ -1799,7 +1799,7 @@ int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written)
int SSL_write_early_data(SSL *s, const void *buf, size_t num, size_t *written) int SSL_write_early_data(SSL *s, const void *buf, size_t num, size_t *written)
{ {
int ret; int ret, early_data_state;
switch (s->early_data_state) { switch (s->early_data_state) {
case SSL_EARLY_DATA_NONE: case SSL_EARLY_DATA_NONE:
...@@ -1830,14 +1830,13 @@ int SSL_write_early_data(SSL *s, const void *buf, size_t num, size_t *written) ...@@ -1830,14 +1830,13 @@ int SSL_write_early_data(SSL *s, const void *buf, size_t num, size_t *written)
return ret; return ret;
case SSL_EARLY_DATA_FINISHED_READING: case SSL_EARLY_DATA_FINISHED_READING:
case SSL_EARLY_DATA_READ_RETRY: { case SSL_EARLY_DATA_READ_RETRY:
int early_data_state = s->early_data_state; early_data_state = s->early_data_state;
/* We are a server writing to an unauthenticated client */ /* We are a server writing to an unauthenticated client */
s->early_data_state = SSL_EARLY_DATA_UNAUTH_WRITING; s->early_data_state = SSL_EARLY_DATA_UNAUTH_WRITING;
ret = SSL_write_ex(s, buf, num, written); ret = SSL_write_ex(s, buf, num, written);
s->early_data_state = early_data_state; s->early_data_state = early_data_state;
return ret; return ret;
}
default: default:
SSLerr(SSL_F_SSL_WRITE_EARLY_DATA, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); SSLerr(SSL_F_SSL_WRITE_EARLY_DATA, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册