--------------------- PatchSet 11319 Date: 2007/03/11 22:58:44 Author: hno Branch: HEAD Tag: (none) Log: Remove odd looking condition from memHaveHeaders. Rely on psstate to be set proper. Members: src/store.c:1.576->1.577 Index: squid/src/store.c =================================================================== RCS file: /cvsroot/squid/squid/src/store.c,v retrieving revision 1.576 retrieving revision 1.577 diff -u -r1.576 -r1.577 --- squid/src/store.c 26 Feb 2007 09:11:10 -0000 1.576 +++ squid/src/store.c 11 Mar 2007 22:58:44 -0000 1.577 @@ -1,6 +1,6 @@ /* - * $Id: store.c,v 1.576 2007/02/26 09:11:10 hno Exp $ + * $Id: store.c,v 1.577 2007/03/11 22:58:44 hno Exp $ * * DEBUG: section 20 Storage Manager * AUTHOR: Harvest Derived @@ -130,8 +130,6 @@ { if (mem->reply == NULL) return 0; - if (mem->reply->sline.status == 0) - return 0; if (mem->reply->pstate != psParsed) return 0; return 1;