]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
no longer have this
authorAlan T. DeKok <aland@freeradius.org>
Fri, 3 Aug 2018 16:40:52 +0000 (12:40 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 3 Aug 2018 18:16:43 +0000 (14:16 -0400)
src/lib/server/cf_parse.c
src/lib/server/cf_parse.h
src/lib/server/cf_priv.h
src/lib/server/cf_util.c

index 3378d0254a11cb186581bba27253fdbb65de00ed..b42d29de112b22be4bff000e9fa8cb984f143fe6 100644 (file)
@@ -1414,15 +1414,6 @@ int cf_section_parse_pass2(void *base, CONF_SECTION *cs)
        return 0;
 }
 
-/*
- *     Fixme? Swapout with an iterative API.
- */
-const CONF_PARSER *cf_section_parse_table(CONF_SECTION *cs)
-{
-       if (!cs) return NULL;
-
-       return cs->variables;
-}
 
 /** Add a single rule to a #CONF_SECTION
  *
index 1872ae7b376ca03a1a0bcf4478ef66549e63a964..c4803d1b9fb4a60447e77793f9bee29424424698 100644 (file)
@@ -459,7 +459,6 @@ int         cf_pair_parse(TALLOC_CTX *ctx, CONF_SECTION *cs, char const *name,
                              unsigned int type, void *data, char const *dflt, FR_TOKEN dflt_quote) CC_HINT(nonnull(2,3));
 int            cf_section_parse(TALLOC_CTX *ctx, void *base, CONF_SECTION *cs);
 int            cf_section_parse_pass2(void *base, CONF_SECTION *cs);
-CONF_PARSER const      *cf_section_parse_table(CONF_SECTION *cs);
 
 /*
  *     Runtime parse rules
index bec0862210abb008aae906125cfa77dad1a8054c..6306fc06298a9b714f7dc482a1206fbe8c1141a4 100644 (file)
@@ -102,7 +102,6 @@ struct cf_section {
        int                     depth;
 
        CONF_SECTION            *template;
-       CONF_PARSER const       *variables;     //!< the section was parsed with.
 };
 
 /** Internal data that is associated with a configuration section
index 1958096193c03554427d72e7d526fff0af0466c5..f1460f80fd2e18e4d7e3e014fb19c2dea722d1b9 100644 (file)
@@ -842,7 +842,6 @@ CONF_SECTION *cf_section_dup(TALLOC_CTX *ctx, CONF_SECTION *parent, CONF_SECTION
                new->template = cs->template;
                new->base = cs->base;
                new->depth = cs->depth;
-               new->variables = cs->variables;
        }
 
        new->item.lineno = cs->item.lineno;