From: Nick Porter Date: Fri, 9 Feb 2024 12:43:46 +0000 (+0000) Subject: Tidy up X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e6e51972dac4b0b8df30b7964ef363636627f3b;p=thirdparty%2Ffreeradius-server.git Tidy up --- diff --git a/src/modules/rlm_files/rlm_files.c b/src/modules/rlm_files/rlm_files.c index 4287a2934a9..757cf6f91c0 100644 --- a/src/modules/rlm_files/rlm_files.c +++ b/src/modules/rlm_files/rlm_files.c @@ -540,24 +540,18 @@ redo: goto fail; } - if (pl->fall_through) { - continue; - } + if (pl->fall_through) continue; /* * We're not doing patricia tries. Stop now. */ - if (!trie) { - break; - } + if (!trie) break; /* * We're doing patricia tries, but we've been * told to not walk back up the trie, OR we're at the top of the tree. Stop. */ - if (!pl->next_shortest_prefix || (keylen == 0)) { - break; - } + if (!pl->next_shortest_prefix || (keylen == 0)) break; /* * Walk back up the trie looking for shorter prefixes.