diff options
author | Adam Chlipala <adam@chlipala.net> | 2013-12-28 06:30:21 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2013-12-28 06:30:21 -0500 |
commit | efba66057b97d1f207f29a0f4b1e5ede66f9fe2b (patch) | |
tree | 067ebf9f3c822f00deee3a36e2caf2a970ec3f04 | |
parent | 057c34363567b9047afac15a763b18ba5cf1eeaa (diff) |
How embarrassing; didn't try compiling before committing
-rw-r--r-- | src/c/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/http.c b/src/c/http.c index a0a8c1c9..18e188da 100644 --- a/src/c/http.c +++ b/src/c/http.c @@ -267,7 +267,7 @@ static void *worker(void *data) { // unprocessed part of buffer to front. int kept = back - after; - if (/kept == 0) { + if (kept == 0) { // No pipelining going on here. // We'd might as well try to switch to a different connection, // while we wait for more input on this one. |