From f0474f207061151183bb85d59f09422e7bb7e2ee Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Tue, 30 Nov 1999 14:02:27 +0000 Subject: Use TIME_INFINITY for initialization of password entries instead of 2000000000 (BTW who wrote that???) --- nest/config.Y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nest') diff --git a/nest/config.Y b/nest/config.Y index 7ea2789..b807085 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -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; -- cgit v1.2.3