Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: The Source of All Evil <source@NetBSD.ORG>
List: source-changes
Date: 04/09/1996 01:30:02
cgd
Tue Apr  9 01:20:32 EDT 1996
Update of /a/cvsroot/src/sbin/ttyflags
In directory pain.lcs.mit.edu:/a/tmp/cvs-serv15744

Modified Files:
	ttyflags.c 
Log Message:
recent changes cause this to require <string.h> for proper prototyping.
Include it.


cgd
Tue Apr  9 01:29:27 EDT 1996
Update of /a/cvsroot/src/usr.sbin/pppd
In directory pain.lcs.mit.edu:/a/tmp/cvs-serv15797

Modified Files:
	auth.c 
Log Message:
if a variable is a u_int32_t, it may never compare equally to -1L on
some machines (because on those (64-bit) machines, -1L is
0xffffffffffffffff, but a u_int32_t will never be sign extended).
Compare to 0xffffffff; that's what was really meant, anyway.