summaryrefslogtreecommitdiff
path: root/modules/tls
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2001-06-27 23:57:24 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2001-06-27 23:57:24 +0000
commit033e91c288c19cdb692a65c5c24b6fc115cbcfb5 (patch)
tree38f12ffbb5525ed9a4a1e8e0db80b59bc2469641 /modules/tls
parent560d5bbf011c44c61c53cca98d3991e16116a607 (diff)
downloadhttpd-033e91c288c19cdb692a65c5c24b6fc115cbcfb5.tar.gz
Just a mssing brace
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89454 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/tls')
-rw-r--r--modules/tls/mod_tls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tls/mod_tls.c b/modules/tls/mod_tls.c
index 2e84e57760..b5cf15b23d 100644
--- a/modules/tls/mod_tls.c
+++ b/modules/tls/mod_tls.c
@@ -221,7 +221,7 @@ static apr_status_t churn(TLSFilterCtx *pCtx,apr_read_type_e eReadType,apr_size_
if(len == 0) {
/* Lazy frickin browsers just reset instead of shutting down. */
- if(ret == APR_EOF || APR_STATUS_IS_ECONNRESET(ret))
+ if(ret == APR_EOF || APR_STATUS_IS_ECONNRESET(ret)) {
if(APR_BRIGADE_EMPTY(pCtx->pbbPendingInput))
return APR_EOF;
else