summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2005-12-16 14:48:22 +0000
committerJoe Orton <jorton@apache.org>2005-12-16 14:48:22 +0000
commit2de4e93f2bc97343fd7fd1b6552f1ab05f8cb989 (patch)
tree1ed66b46b7fc1a91decc5e12867b91968173ef81
parent66bdf7b618dbca9f6dc145dd2f5f60a23eae9dce (diff)
downloadhttpd-2de4e93f2bc97343fd7fd1b6552f1ab05f8cb989.tar.gz
* server/protocol.c (ap_old_write_filter): Use NULL for the NULL
pointer not 0. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@357170 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--server/protocol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/protocol.c b/server/protocol.c
index 600ed5e273..f2d231672a 100644
--- a/server/protocol.c
+++ b/server/protocol.c
@@ -1380,7 +1380,7 @@ AP_CORE_DECLARE_NONSTD(apr_status_t) ap_old_write_filter(
AP_DEBUG_ASSERT(ctx);
- if (ctx->bb != 0) {
+ if (ctx->bb != NULL) {
/* whatever is coming down the pipe (we don't care), we
* can simply insert our buffered data at the front and
* pass the whole bundle down the chain.