From be93053d2f248c11295746e763dc22da8841b8d2 Mon Sep 17 00:00:00 2001 From: cperciva Date: Sat, 15 May 2004 20:55:19 +0000 Subject: 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(-) (limited to 'sys/security/mac_portacl') diff --git a/sys/security/mac_portacl/mac_portacl.c b/sys/security/mac_portacl/mac_portacl.c index 4b671c6..7524155 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); -- cgit v1.1