From: hno <> Date: Sat, 14 May 2005 06:51:10 +0000 (+0000) Subject: comm_write is writing, not reading.. (comment) X-Git-Tag: SQUID_3_0_PRE4~749 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16a50a6f7ec66d5c607e72290f98fb1768624b52;p=thirdparty%2Fsquid.git comm_write is writing, not reading.. (comment) --- diff --git a/src/comm.cc b/src/comm.cc index 488d916dcc..74160f838b 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1,6 +1,6 @@ /* - * $Id: comm.cc,v 1.404 2005/04/18 21:52:42 hno Exp $ + * $Id: comm.cc,v 1.405 2005/05/14 00:51:10 hno Exp $ * * DEBUG: section 5 Socket Functions * AUTHOR: Harvest Derived @@ -888,7 +888,7 @@ comm_write(int fd, const char *buf, size_t size, IOWCB *handler, void *handler_d /* Can't queue a write with no callback */ assert(handler); - /* Queue a read */ + /* Queue a write */ fdc_table[fd].write.buf = buf; fdc_table[fd].write.size = size; fdc_table[fd].write.handler = handler;