From 860871290250ceb49d07591684dd4f81e2d2c207 Mon Sep 17 00:00:00 2001 From: hno <> Date: Sun, 15 May 2005 02:00:25 +0000 Subject: [PATCH] Fix config dumps of port acls --- include/List.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/List.h b/include/List.h index fab93d276d..83c7c22eb0 100644 --- a/include/List.h +++ b/include/List.h @@ -1,6 +1,6 @@ /* - * $Id: List.h,v 1.5 2005/05/08 23:28:44 hno Exp $ + * $Id: List.h,v 1.6 2005/05/14 20:00:25 hno Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -82,7 +82,7 @@ public: return entry->element; } bool end() { - return next_entry != NULL; + return next_entry == NULL; } private: -- 2.47.2