]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Use TIME_INFINITY for initialization of password entries instead
authorMartin Mares <mj@ucw.cz>
Tue, 30 Nov 1999 14:02:27 +0000 (14:02 +0000)
committerMartin Mares <mj@ucw.cz>
Tue, 30 Nov 1999 14:02:27 +0000 (14:02 +0000)
of 2000000000 (BTW who wrote that???)

nest/config.Y

index 7ea27892b37a4eee191c9a569c9db3236859dc3b..b807085a68bf7dee40096a85ac19e2897bcf2ce5 100644 (file)
@@ -73,7 +73,7 @@ proto_start: PROTOCOL
 
 proto_name:
    /* EMPTY */ {
-     struct symbol *s = cf_default_name(this_proto->proto->name, &this_proto->proto->name_counter);
+     struct symbol *s = cf_default_name(this_proto->protocol->name, &this_proto->protocol->name_counter);
      s->class = SYM_PROTO;
      s->def = this_proto;
      this_proto->name = s->name;
@@ -163,7 +163,7 @@ password_begin:
      last_password_item = cfg_alloc(sizeof (struct password_item));
      last_password_item->password = $2;
      last_password_item->from = 0;
-     last_password_item->to = 2000000000;
+     last_password_item->to = TIME_INFINITY;
      last_password_item->id = 0;
      last_password_item->next = NULL;
      $$=last_password_item;