From d1f1070acb4f5d29ddc6536126d6834ec418b8f1 Mon Sep 17 00:00:00 2001
From: William Roberts <wroberts@tresys.com>
Date: Tue, 15 Oct 2013 08:58:51 -0700
Subject: [PATCH] tools: drop unused field in struct

check_seapp at one point in time switch from a home implementation
of a hash table to using GLIBC search.h routines. A struct in one
of the fields was never removed during this transition.

Change-Id: I65c028103ffe90fa52e0b3c9fce28124ed9c7ff9
---
 tools/check_seapp.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tools/check_seapp.c b/tools/check_seapp.c
index 1f512481e..6b52ce08e 100644
--- a/tools/check_seapp.c
+++ b/tools/check_seapp.c
@@ -102,7 +102,6 @@ struct rule_map {
 	char *key; /** key value before hashing */
 	int length; /** length of the key map */
 	int lineno; /** Line number rule was encounter on */
-	rule_map *next; /** next pointer used in hash table for chaining on collision */
 	key_map m[]; /** key value mapping */
 };
 
-- 
GitLab