Diff for /embedaddon/bird/conf/confbase.Y between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2017/08/22 12:33:54 version 1.1.1.2, 2021/03/17 19:50:23
Line 43  CF_DECLS Line 43  CF_DECLS
   char *t;    char *t;
   struct rtable_config *r;    struct rtable_config *r;
   struct f_inst *x;    struct f_inst *x;
     struct f_dynamic_attr fda;
     struct f_static_attr fsa;
   struct filter *f;    struct filter *f;
   struct f_tree *e;    struct f_tree *e;
   struct f_trie *trie;    struct f_trie *trie;
Line 53  CF_DECLS Line 55  CF_DECLS
   struct roa_show_data *ro;    struct roa_show_data *ro;
   struct sym_show_data *sd;    struct sym_show_data *sd;
   struct lsadb_show_data *ld;    struct lsadb_show_data *ld;
     struct mrt_dump_data *md;
   struct iface *iface;    struct iface *iface;
   struct roa_table *rot;    struct roa_table *rot;
   void *g;    void *g;
Line 77  CF_DECLS Line 80  CF_DECLS
 %type <time> datetime  %type <time> datetime
 %type <a> ipa  %type <a> ipa
 %type <px> prefix prefix_or_ipa  %type <px> prefix prefix_or_ipa
%type <t> text%type <t> text opttext
 %type <t> text_or_none  %type <t> text_or_none
   
 %nonassoc PREFIX_DUMMY  %nonassoc PREFIX_DUMMY
Line 198  text: Line 201  text:
      if ($1->class != (SYM_CONSTANT | T_STRING)) cf_error("String expected");       if ($1->class != (SYM_CONSTANT | T_STRING)) cf_error("String expected");
      $$ = SYM_VAL($1).s;       $$ = SYM_VAL($1).s;
    }     }
    ;
   
   opttext:
       TEXT
    | /* empty */ { $$ = NULL; }
  ;   ;
   
 text_or_none:  text_or_none:

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>