summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-05-27 19:48:43 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-05-27 19:48:43 +0000
commita5b8d9658ecc4a7d613b68e919d12cf97f878d82 (patch)
treea9f3c2eafb2ad40e528e9dcacc579b85fc354c73
parent6f3833f97c2d4f4d70130696a66207d923e6a1d0 (diff)
unsigned to unsigned int
-rw-r--r--usr.sbin/rbootd/bpf.c6
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;
/*