File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -163,11 +163,11 @@ ACE_SSL_SOCK_Stream::recv_i (void *buf,
163
163
bytes_read = -1 ;
164
164
break ;
165
165
}
166
- int substat = ACE::handle_ready (handle,
167
- timeout,
168
- status == SSL_ERROR_WANT_READ,
169
- status == SSL_ERROR_WANT_WRITE,
170
- false );
166
+ const int substat = ACE::handle_ready (handle,
167
+ timeout,
168
+ status == SSL_ERROR_WANT_READ,
169
+ status == SSL_ERROR_WANT_WRITE,
170
+ false );
171
171
if (substat == 1 ) // Now ready to proceed
172
172
{
173
173
retry = true ;
@@ -197,7 +197,7 @@ ACE_SSL_SOCK_Stream::recv_i (void *buf,
197
197
case SSL_ERROR_SSL:
198
198
if (ERR_GET_REASON (::ERR_peek_last_error ()) != SSL_R_UNEXPECTED_EOF_WHILE_READING)
199
199
goto default_; // --> handle as default error
200
- ACE_FALLTHROUGH
200
+ ACE_FALLTHROUGH;
201
201
202
202
#endif // OPENSSL_VERSION_NUMBER >= 0x30000000L || OPENSSL_VERSION_NUMBER == 0x1010105fL
203
203
case SSL_ERROR_SYSCALL:
You can’t perform that action at this time.
0 commit comments