diff options
author | Stefan Eissing <icing@apache.org> | 2015-12-18 16:13:40 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2015-12-18 16:13:40 +0100 |
commit | 98b1293c3c2b5173a8abee8e2bc396d8e4799916 (patch) | |
tree | c43406ef12d3fce6d2ec2268ebf6ad3820f2b848 /modules/http2/h2_ctx.c | |
parent | 3 new timeout configuration directives for mod_http2 (diff) | |
download | apache2-98b1293c3c2b5173a8abee8e2bc396d8e4799916.tar.xz apache2-98b1293c3c2b5173a8abee8e2bc396d8e4799916.zip |
logging tweaks and task check
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1720806 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_ctx.c')
-rw-r--r-- | modules/http2/h2_ctx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http2/h2_ctx.c b/modules/http2/h2_ctx.c index fa0a3c8e94..b40037cb35 100644 --- a/modules/http2/h2_ctx.c +++ b/modules/http2/h2_ctx.c @@ -98,7 +98,7 @@ h2_ctx *h2_ctx_server_set(h2_ctx *ctx, server_rec *s) int h2_ctx_is_task(h2_ctx *ctx) { - return ctx && !!ctx->task; + return ctx && ctx->task; } struct h2_task *h2_ctx_get_task(h2_ctx *ctx) |