From 713ac2060c5b8dec361f859789fdadd5c6c53fbf Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Fri, 15 Mar 2019 12:19:55 -0400 Subject: [PATCH] remove unused assignment and comment out path compression again It appears that travis is much different from local tests --- src/lib/util/trie.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib/util/trie.c b/src/lib/util/trie.c index 279db1d6e648..32ebb220d35d 100644 --- a/src/lib/util/trie.c +++ b/src/lib/util/trie.c @@ -74,7 +74,7 @@ RCSID("$Id$") * would have only one edge. */ #ifndef NO_PATH_COMPRESSION -#define WITH_PATH_COMPRESSION +//#define WITH_PATH_COMPRESSION #endif #define MAX_KEY_BYTES (256) @@ -1190,11 +1190,9 @@ static int fr_trie_path_insert(TALLOC_CTX *ctx, fr_trie_t *parent, fr_trie_t **t */ parent = (fr_trie_t *) split; *trie_p = parent; - path = (fr_trie_path_t *) split->trie; trie_p = &split->trie; start_bit += lcp; - bits -= lcp; /* * Recurse to insert the key into the child node.