From: Alan T. DeKok Date: Wed, 19 Apr 2017 17:02:51 +0000 (-0400) Subject: remove unused variable X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48eb9d8919cdee54227cbff7a8f09fe7ad8f6ed1;p=thirdparty%2Ffreeradius-server.git remove unused variable --- diff --git a/src/main/unlang_compile.c b/src/main/unlang_compile.c index d526f59e742..8e99684e3c9 100644 --- a/src/main/unlang_compile.c +++ b/src/main/unlang_compile.c @@ -2397,7 +2397,6 @@ static unlang_t *compile_redundant(unlang_t *parent, unlang_compile_t *unlang_ct { char const *name2; unlang_t *c; - unlang_group_t *g; /* * No children? Die! @@ -2414,8 +2413,6 @@ static unlang_t *compile_redundant(unlang_t *parent, unlang_compile_t *unlang_ct c = compile_group(parent, unlang_ctx, cs, group_type, parentgroup_type, mod_type); if (!c) return NULL; - g = unlang_generic_to_group(c); - /* * "redundant" is just "group" with different default actions. *