diff options
author | knu <knu@FreeBSD.org> | 2001-03-05 09:59:39 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2001-03-05 09:59:39 +0000 |
commit | e4b6d7d5aabedaa452c00f21bbf61a10d59e6cb6 (patch) | |
tree | b784a9426444af662b069f57fc6c58850e569fcb /www/wyvern/files | |
parent | a3cf52842335c1a0dc81651d18c191ccabb69c72 (diff) | |
download | FreeBSD-ports-e4b6d7d5aabedaa452c00f21bbf61a10d59e6cb6.zip FreeBSD-ports-e4b6d7d5aabedaa452c00f21bbf61a10d59e6cb6.tar.gz |
Apply a bug-fix submitted by the author.
Diffstat (limited to 'www/wyvern/files')
-rw-r--r-- | www/wyvern/files/patch-response.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/www/wyvern/files/patch-response.c b/www/wyvern/files/patch-response.c new file mode 100644 index 0000000..3055b87 --- /dev/null +++ b/www/wyvern/files/patch-response.c @@ -0,0 +1,14 @@ +--- src/response.c.orig Mon Dec 18 01:21:53 2000 ++++ src/response.c Mon Mar 5 18:48:15 2001 +@@ -480,9 +480,11 @@ + sendEntityDone(thd) + Thread * thd; + { ++#if 0 + /* send end line (CRLF only) */ + thd->sendcnt = snprintf(thd->sendbuf, sizeof(thd->sendbuf), "%s", CRLF); + writeData(thd); ++#endif + thd->status = TERMINATED; + #if defined(BUGGY_KEEP_ALIVE) && defined(DEBUG) + if (thd->keepAlive.state == KA_CONTINUE) { |