Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: None <source@NetBSD.ORG>
List: source-changes
Date: 10/10/1997 16:40:08
lukem
Fri Oct 10 09:32:20 PDT 1997
Update of /cvsroot/src/games/hunt
In directory netbsd1:/var/slash-tmp/cvs-serv13990

Modified Files:
	Makefile.inc 
Log Message:
Yet Another Monster Commit:
- WARNSify
- getopt returns -1 not EOF
- select() uses an fd_set, not int/long; modify code to use FD_* et al
  instead of direct bitwise operations
- in otto.c::look (renamed to ottolook() to prevent name clash), the
  case WEST section had a 'goto cont_east', instead of 'goto cont_west'.
  (picked up by WARNS=1, because cont_west was an unused label because
  of this typo). probably meant that otto got lost in the maze :-/
- deprecate register, convert bcmp() -> memcmp()


lukem
Fri Oct 10 09:32:46 PDT 1997
Update of /cvsroot/src/games/hunt/hunt
In directory netbsd1:/var/slash-tmp/cvs-serv13990/hunt

Modified Files:
	connect.c hunt.6 hunt.c otto.c playit.c 
Log Message:
Yet Another Monster Commit:
- WARNSify
- getopt returns -1 not EOF
- select() uses an fd_set, not int/long; modify code to use FD_* et al
  instead of direct bitwise operations
- in otto.c::look (renamed to ottolook() to prevent name clash), the
  case WEST section had a 'goto cont_east', instead of 'goto cont_west'.
  (picked up by WARNS=1, because cont_west was an unused label because
  of this typo). probably meant that otto got lost in the maze :-/
- deprecate register, convert bcmp() -> memcmp()


lukem
Fri Oct 10 09:34:11 PDT 1997
Update of /cvsroot/src/games/hunt/huntd
In directory netbsd1:/var/slash-tmp/cvs-serv13990/huntd

Modified Files:
	answer.c ctl.c ctl_transact.c draw.c driver.c execute.c expl.c 
	extern.c faketalk.c get_names.c hunt.h makemaze.c pathname.c 
	shots.c talk_ctl.h terminal.c 
Log Message:
Yet Another Monster Commit:
- WARNSify
- getopt returns -1 not EOF
- select() uses an fd_set, not int/long; modify code to use FD_* et al
  instead of direct bitwise operations
- in otto.c::look (renamed to ottolook() to prevent name clash), the
  case WEST section had a 'goto cont_east', instead of 'goto cont_west'.
  (picked up by WARNS=1, because cont_west was an unused label because
  of this typo). probably meant that otto got lost in the maze :-/
- deprecate register, convert bcmp() -> memcmp()


explorer
Fri Oct 10 09:35:05 PDT 1997
Update of /cvsroot/src/sys/dev
In directory netbsd1:/var/slash-tmp/cvs-serv14352

Modified Files:
	rnd.c 
Log Message:
For network devices, collect timing information and mix into the pool,
but do not assume any entopy is gathered.  It can be enabled using an
IOCTL again if the user desires.

Note that the mix function uses xor, so at worse an attacker can twiddle
bits in the pool, but not into a known state assuming it started as
an unknown.


lukem
Fri Oct 10 09:38:49 PDT 1997
Update of /cvsroot/src/games/morse
In directory netbsd1:/var/slash-tmp/cvs-serv16109

Modified Files:
	morse.c 
Log Message:
WARNSify