summaryrefslogtreecommitdiffstats
path: root/modules/tls
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2001-04-30 13:23:51 +0200
committerJeff Trawick <trawick@apache.org>2001-04-30 13:23:51 +0200
commitc27ecd5aee904506ca9cf7cbd738fed78343eb1e (patch)
treea98b4b61fb4f80e98046e2718056902cb4b0faef /modules/tls
parentC::Scan strikes again; include argument name in ap_invoke_handler prototype (diff)
downloadapache2-c27ecd5aee904506ca9cf7cbd738fed78343eb1e.tar.xz
apache2-c27ecd5aee904506ca9cf7cbd738fed78343eb1e.zip
fix my APR_STATUS_IS_EAGAIN() usage
Submitted by: Bernhard Schrenk <b.schrenk@improx.com> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88966 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 1787e94b00..2fd8cc75d3 100644
--- a/modules/tls/mod_tls.c
+++ b/modules/tls/mod_tls.c
@@ -235,7 +235,7 @@ static apr_status_t churn(TLSFilterCtx *pCtx,apr_read_type_e eReadType,apr_size_
ap_log_error(APLOG_MARK,APLOG_ERR,ret,NULL,
"Read failed in tls_in_filter");
assert(eReadType == APR_NONBLOCK_READ);
- assert(ret == APR_SUCCESS || ret == APR_STATUS_IS_EAGAIN(ret));
+ assert(ret == APR_SUCCESS || APR_STATUS_IS_EAGAIN(ret));
/* In this case, we have data in the output bucket, or we were
* non-blocking, so returning nothing is fine.
*/