diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-27 19:48:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-27 19:48:43 +0000 |
commit | a5b8d9658ecc4a7d613b68e919d12cf97f878d82 (patch) | |
tree | a9f3c2eafb2ad40e528e9dcacc579b85fc354c73 /usr.sbin | |
parent | 6f3833f97c2d4f4d70130696a66207d923e6a1d0 (diff) |
unsigned to unsigned int
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rbootd/bpf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/rbootd/bpf.c b/usr.sbin/rbootd/bpf.c index c67918cb8c2..9de116d7f58 100644 --- a/usr.sbin/rbootd/bpf.c +++ b/usr.sbin/rbootd/bpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bpf.c,v 1.7 2002/03/14 16:44:25 mpech Exp $ */ +/* $OpenBSD: bpf.c,v 1.8 2002/05/27 19:48:42 deraadt Exp $ */ /* $NetBSD: bpf.c,v 1.5.2.1 1995/11/14 08:45:42 thorpej Exp $ */ /* @@ -49,7 +49,7 @@ #ifndef lint /*static char sccsid[] = "@(#)bpf.c 8.1 (Berkeley) 6/4/93";*/ -static char rcsid[] = "$OpenBSD: bpf.c,v 1.7 2002/03/14 16:44:25 mpech Exp $"; +static char rcsid[] = "$OpenBSD: bpf.c,v 1.8 2002/05/27 19:48:42 deraadt Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -71,7 +71,7 @@ static char rcsid[] = "$OpenBSD: bpf.c,v 1.7 2002/03/14 16:44:25 mpech Exp $"; #include "pathnames.h" static int BpfFd = -1; -static unsigned BpfLen = 0; +static unsigned int BpfLen = 0; static u_int8_t *BpfPkt = NULL; /* |