Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: None <source@NetBSD.ORG>
List: source-changes
Date: 05/27/1997 01:20:02
thorpej
Mon May 26 18:15:22 PDT 1997
Update of /cvsroot/src/sys/netinet
In directory netbsd1:/var/slash-tmp/cvs-serv2914

Modified Files:
	ip_fil.c 
Log Message:
Make this compile on 32-bit architectures again:
- Fix a really obvious error: ipl_enable() disappeared, but the guts of
  the function were scrunched into the "no-op" BSD pseudo-device attach
  routine.  Would not compile, because of non-void return from a void
  function.  Fixed by reincarnating ipl_enable(), and reimplementing
  the no-op pseudo-device attach.
- #ifdef as appropriate to remove unused variable warnings.
- Call ipl_enable() in iplinit(), rather than the no-op ipfilterattach().


thorpej
Mon May 26 18:17:05 PDT 1997
Update of /cvsroot/src/sys/netinet
In directory netbsd1:/var/slash-tmp/cvs-serv3421

Modified Files:
	ip_fil.h 
Log Message:
Make this compile on 32-bit architectures again:
- Don't prototype functions that don't exist, and do prototype those
  that do.
- Get ioctl arguments right (cmd is a u_long in NetBSD).


thorpej
Mon May 26 18:18:47 PDT 1997
Update of /cvsroot/src/sys/netinet
In directory netbsd1:/var/slash-tmp/cvs-serv3461

Modified Files:
	ip_frag.c 
Log Message:
Make this compile on 32-bit architectures again:
- garbage-collect unused variables.


thorpej
Mon May 26 18:19:48 PDT 1997
Update of /cvsroot/src/sys/netinet
In directory netbsd1:/var/slash-tmp/cvs-serv3509

Modified Files:
	ip_ftp_pxy.c 
Log Message:
Make this compile on 32-bit architectures:
- Add prototypes.
- garbage-collect unused variables.