Skip to content

Commit

Permalink
remove unused assignment
Browse files Browse the repository at this point in the history
and comment out path compression again <sigh>  It appears that
travis is much different from local tests
  • Loading branch information
alandekok committed Mar 15, 2019
1 parent 8e65d68 commit 713ac20
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lib/util/trie.c
Expand Up @@ -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)
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 713ac20

Please sign in to comment.