Subject: changed files: 'src/sbin/routed Makefile af.h tables.c'
To: None <source-changes>
From: Chris G. Demetriou <cgd>
List: source-changes
Date: 12/30/1993 02:44:37
Update of /b/source/CVS/src/sbin/routed
In directory sun-lamp.cs.berkeley.edu:/usr/src/sbin/routed

Modified Files:
	Makefile af.h tables.c 
Log Message:
Undo that last change.  It was 100%, beyond a doubt, completely bogus.
afswitch and af_max were still used, but since they was declared 'common'
by virtue of their declaration in af.h, the symbols were defined at link-
time, and their contents were considered BSS -- init to zero.
Now, you and i know that jumping to zero causes a core dump...
Therefore: af.c has been resurrected, so the procedure pointers actually
point to procedures, tables.c has had it's change nuked, and af.h
has been changed so afswitch and af_max are declared as 'extern'.
It's obvious that that 'fix' wasn't even tested.


------------------------------------------------------------------------------