From: rousskov <> Date: Wed, 3 Jun 1998 21:52:15 +0000 (+0000) Subject: - spellchecking and typos X-Git-Tag: SQUID_3_0_PRE1~3189 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb139d08714012464bab219b46892d043e20bed0;p=thirdparty%2Fsquid.git - spellchecking and typos --- diff --git a/src/HttpHeader.cc b/src/HttpHeader.cc index 17ef890c78..6d566f3391 100644 --- a/src/HttpHeader.cc +++ b/src/HttpHeader.cc @@ -1,6 +1,6 @@ /* - * $Id: HttpHeader.cc,v 1.41 1998/06/02 22:15:18 rousskov Exp $ + * $Id: HttpHeader.cc,v 1.42 1998/06/03 15:52:15 rousskov Exp $ * * DEBUG: section 55 HTTP Header * AUTHOR: Alex Rousskov @@ -607,7 +607,7 @@ void httpHeaderPutInt(HttpHeader * hdr, http_hdr_type id, int number) { assert_eid(id); - assert(Headers[id].type == ftInt); /* must be of an appropriatre type */ + assert(Headers[id].type == ftInt); /* must be of an appropriate type */ assert(number >= 0); httpHeaderAddEntry(hdr, httpHeaderEntryCreate(id, NULL, xitoa(number))); } @@ -616,7 +616,7 @@ void httpHeaderPutTime(HttpHeader * hdr, http_hdr_type id, time_t time) { assert_eid(id); - assert(Headers[id].type == ftDate_1123); /* must be of an appropriatre type */ + assert(Headers[id].type == ftDate_1123); /* must be of an appropriate type */ assert(time >= 0); httpHeaderAddEntry(hdr, httpHeaderEntryCreate(id, NULL, mkrfc1123(time))); } @@ -625,7 +625,7 @@ void httpHeaderPutStr(HttpHeader * hdr, http_hdr_type id, const char *str) { assert_eid(id); - assert(Headers[id].type == ftStr); /* must be of an appropriatre type */ + assert(Headers[id].type == ftStr); /* must be of an appropriate type */ assert(str); httpHeaderAddEntry(hdr, httpHeaderEntryCreate(id, NULL, str)); } diff --git a/src/HttpStatusLine.cc b/src/HttpStatusLine.cc index ca2c38be83..c63677dbd1 100644 --- a/src/HttpStatusLine.cc +++ b/src/HttpStatusLine.cc @@ -1,6 +1,6 @@ /* - * $Id: HttpStatusLine.cc,v 1.11 1998/05/22 23:43:56 wessels Exp $ + * $Id: HttpStatusLine.cc,v 1.12 1998/06/03 15:52:16 rousskov Exp $ * * DEBUG: section 57 HTTP Status-line * AUTHOR: Alex Rousskov @@ -63,7 +63,7 @@ httpStatusLineSet(HttpStatusLine * sline, double version, http_status status, co sline->reason = reason; } -/* parse a 0-terminating buffer and fill internal structires; returns true on success */ +/* parse a 0-terminating buffer and fill internal structures; returns true on success */ void httpStatusLinePackInto(const HttpStatusLine * sline, Packer * p) { diff --git a/src/MemBuf.cc b/src/MemBuf.cc index 9dd299d727..c63690c452 100644 --- a/src/MemBuf.cc +++ b/src/MemBuf.cc @@ -1,5 +1,5 @@ /* - * $Id: MemBuf.cc,v 1.13 1998/06/02 04:18:14 wessels Exp $ + * $Id: MemBuf.cc,v 1.14 1998/06/03 15:52:16 rousskov Exp $ * * DEBUG: section 59 auto-growing Memory Buffer with printf * AUTHOR: Alex Rousskov @@ -53,9 +53,10 @@ * * The whole "packing" idea is quite messy: We are given a buffer of fixed * size and we have to check all the time that we still fit. Sounds logical. - * However, what happens if we have more data? If we are lucky to be careful - * to stop before we overrun any buffers, we still may have garbage (e.g. - * half of ETag) in the buffer. + * + * However, what happens if we have more data? If we are lucky to stop before + * we overrun any buffers, we still may have garbage (e.g. half of ETag) in + * the buffer. * * MemBuffer: * ---------- diff --git a/src/Packer.cc b/src/Packer.cc index 1215129fbc..72a566184e 100644 --- a/src/Packer.cc +++ b/src/Packer.cc @@ -1,6 +1,6 @@ /* - * $Id: Packer.cc,v 1.6 1998/03/03 22:17:52 rousskov Exp $ + * $Id: Packer.cc,v 1.7 1998/06/03 15:52:17 rousskov Exp $ * * DEBUG: section 60 Packer: A uniform interface to store-like modules * AUTHOR: Alex Rousskov @@ -57,7 +57,7 @@ * comm_write or "append" things to store, depending on actual packer * supplied. * - * It is amasing how much work a tiny object can save. :) + * It is amazing how much work a tiny object can save. :) * */ diff --git a/src/disk.cc b/src/disk.cc index c4010481e5..8625c0e64d 100644 --- a/src/disk.cc +++ b/src/disk.cc @@ -1,6 +1,6 @@ /* - * $Id: disk.cc,v 1.117 1998/05/30 19:43:06 rousskov Exp $ + * $Id: disk.cc,v 1.118 1998/06/03 15:52:18 rousskov Exp $ * * DEBUG: section 6 Disk I/O Routines * AUTHOR: Harvest Derived @@ -240,7 +240,7 @@ diskHandleWrite(int fd, void *notused) return; debug(6, 3) ("diskHandleWrite: FD %d\n", fd); /* We need to combine subsequent write requests after the first */ - /* But only if we don't need to seek() in betwen them, ugh! */ + /* But only if we don't need to seek() in between them, ugh! */ /* XXX This currently ignores any seeks (file_offset) */ if (fdd->write_q->next != NULL && fdd->write_q->next->next != NULL) { len = 0;