summaryrefslogtreecommitdiffstats
path: root/libexec/rbootd/bpf.c
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2002-02-07 23:57:01 +0000
committerimp <imp@FreeBSD.org>2002-02-07 23:57:01 +0000
commitc963f1d00273d3cea8a89288017919b46b7374e3 (patch)
treeec514bcba5b68b3cc1a0c1e6821e5f92d0c6bf2d /libexec/rbootd/bpf.c
parent4289b50433ef09f1bfa03246de59392ffe6bb601 (diff)
downloadFreeBSD-src-c963f1d00273d3cea8a89288017919b46b7374e3.zip
FreeBSD-src-c963f1d00273d3cea8a89288017919b46b7374e3.tar.gz
o __P removal
o register removal o use new style prototypes and function definitions
Diffstat (limited to 'libexec/rbootd/bpf.c')
-rw-r--r--libexec/rbootd/bpf.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/libexec/rbootd/bpf.c b/libexec/rbootd/bpf.c
index 98d6e00..ddd9cfb 100644
--- a/libexec/rbootd/bpf.c
+++ b/libexec/rbootd/bpf.c
@@ -88,7 +88,7 @@ static u_int8_t *BpfPkt = NULL;
** If an error is encountered, the program terminates here.
*/
int
-BpfOpen()
+BpfOpen(void)
{
struct ifreq ifr;
char bpfdev[32];
@@ -217,8 +217,7 @@ BpfOpen()
** None.
*/
char *
-BpfGetIntfName(errmsg)
- char **errmsg;
+BpfGetIntfName(char **errmsg)
{
struct ifreq ibuf[8], *ifrp, *ifend, *mp;
struct ifconf ifc;
@@ -307,9 +306,7 @@ BpfGetIntfName(errmsg)
** None.
*/
int
-BpfRead(rconn, doread)
- RMPCONN *rconn;
- int doread;
+BpfRead(RMPCONN *rconn, int doread)
{
int datlen, caplen, hdrlen;
static u_int8_t *bp = NULL, *ep = NULL;
@@ -373,8 +370,7 @@ BpfRead(rconn, doread)
** None.
*/
int
-BpfWrite(rconn)
- RMPCONN *rconn;
+BpfWrite(RMPCONN *rconn)
{
if (write(BpfFd, (char *)&rconn->rmp, rconn->rmplen) < 0) {
syslog(LOG_ERR, "write: %s: %m", EnetStr(rconn));
@@ -397,7 +393,7 @@ BpfWrite(rconn)
** None.
*/
void
-BpfClose()
+BpfClose(void)
{
struct ifreq ifr;
OpenPOWER on IntegriCloud