From 2b8b4f37bea962a1206bc13a7baf3dfc03182742 Mon Sep 17 00:00:00 2001 From: Colin Percival Date: Sat, 15 May 2004 20:55:19 +0000 Subject: [PATCH] Remove dead code. (This loop counted the number of rules, but the count was never used.) Reported by: pjd Approved by: rwatson --- sys/security/mac_portacl/mac_portacl.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/sys/security/mac_portacl/mac_portacl.c b/sys/security/mac_portacl/mac_portacl.c index 4b671c605805..7524155d48a8 100644 --- a/sys/security/mac_portacl/mac_portacl.c +++ b/sys/security/mac_portacl/mac_portacl.c @@ -142,13 +142,6 @@ static void toast_rules(struct rulehead *head) { struct rule *rule; - int i; - - i = 0; - for (rule = TAILQ_FIRST(head); - rule != NULL; - rule = TAILQ_NEXT(rule, r_entries)) - i++; while ((rule = TAILQ_FIRST(head)) != NULL) { TAILQ_REMOVE(head, rule, r_entries);