Fix compiler warnings, build with WARNS.

This commit is contained in:
thorpej 1997-07-28 05:39:16 +00:00
parent d3de043fad
commit 4902da1c96
7 changed files with 49 additions and 22 deletions

View File

@ -1,8 +1,9 @@
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
# $NetBSD: Makefile,v 1.4 1995/08/21 17:05:08 thorpej Exp $
# $NetBSD: Makefile,v 1.5 1997/07/28 05:39:16 thorpej Exp $
PROG= rbootd
SRCS= bpf.c conf.c parseconf.c rbootd.c rmpproto.c utils.c
MAN= rbootd.8
WARNS=1
.include <bsd.prog.mk>

View File

@ -1,4 +1,4 @@
/* $NetBSD: bpf.c,v 1.7 1997/01/27 22:51:50 thorpej Exp $ */
/* $NetBSD: bpf.c,v 1.8 1997/07/28 05:39:17 thorpej Exp $ */
/*
* Copyright (c) 1988, 1992 The University of Utah and the Center
@ -46,9 +46,13 @@
* Author: Jeff Forys, University of Utah CSS
*/
#include <sys/cdefs.h>
#ifndef lint
/*static char sccsid[] = "@(#)bpf.c 8.1 (Berkeley) 6/4/93";*/
static char rcsid[] = "$NetBSD: bpf.c,v 1.7 1997/01/27 22:51:50 thorpej Exp $";
#if 0
static char sccsid[] = "@(#)bpf.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: bpf.c,v 1.8 1997/07/28 05:39:17 thorpej Exp $");
#endif
#endif /* not lint */
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: conf.c,v 1.5 1995/10/06 05:12:13 thorpej Exp $ */
/* $NetBSD: conf.c,v 1.6 1997/07/28 05:39:18 thorpej Exp $ */
/*
* Copyright (c) 1988, 1992 The University of Utah and the Center
@ -46,9 +46,13 @@
* Author: Jeff Forys, University of Utah CSS
*/
#include <sys/cdefs.h>
#ifndef lint
/*static char sccsid[] = "@(#)conf.c 8.1 (Berkeley) 6/4/93";*/
static char rcsid[] = "$NetBSD: conf.c,v 1.5 1995/10/06 05:12:13 thorpej Exp $";
#if 0
static char sccsid[] = "@(#)conf.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: conf.c,v 1.6 1997/07/28 05:39:18 thorpej Exp $");
#endif
#endif /* not lint */
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: parseconf.c,v 1.4 1995/10/06 05:12:16 thorpej Exp $ */
/* $NetBSD: parseconf.c,v 1.5 1997/07/28 05:39:19 thorpej Exp $ */
/*
* Copyright (c) 1988, 1992 The University of Utah and the Center
@ -46,9 +46,13 @@
* Author: Jeff Forys, University of Utah CSS
*/
#include <sys/cdefs.h>
#ifndef lint
/*static char sccsid[] = "@(#)parseconf.c 8.1 (Berkeley) 6/4/93";*/
static char rcsid[] = "$NetBSD: parseconf.c,v 1.4 1995/10/06 05:12:16 thorpej Exp $";
#if 0
static char sccsid[] = "@(#)parseconf.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: parseconf.c,v 1.5 1997/07/28 05:39:19 thorpej Exp $");
#endif
#endif /* not lint */
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: rbootd.c,v 1.5 1995/10/06 05:12:17 thorpej Exp $ */
/* $NetBSD: rbootd.c,v 1.6 1997/07/28 05:39:20 thorpej Exp $ */
/*
* Copyright (c) 1988, 1992 The University of Utah and the Center
@ -46,15 +46,19 @@
* Author: Jeff Forys, University of Utah CSS
*/
#include <sys/cdefs.h>
#ifndef lint
static char copyright[] =
__COPYRIGHT(
"@(#) Copyright (c) 1992, 1993\n\
The Regents of the University of California. All rights reserved.\n";
The Regents of the University of California. All rights reserved.\n");
#endif /* not lint */
#ifndef lint
/*static char sccsid[] = "@(#)rbootd.c 8.1 (Berkeley) 6/4/93";*/
static char rcsid[] = "$NetBSD: rbootd.c,v 1.5 1995/10/06 05:12:17 thorpej Exp $";
#if 0
static char sccsid[] = "@(#)rbootd.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: rbootd.c,v 1.6 1997/07/28 05:39:20 thorpej Exp $");
#endif
#endif /* not lint */
#include <sys/param.h>
@ -71,6 +75,8 @@ static char rcsid[] = "$NetBSD: rbootd.c,v 1.5 1995/10/06 05:12:17 thorpej Exp $
#include <unistd.h>
#include "defs.h"
int main __P((int, char *[]));
extern char *__progname; /* from crt0.o */
int
@ -248,7 +254,7 @@ main(argc, argv)
if (FD_ISSET(fd, &r)) {
RMPCONN rconn;
CLIENT *client, *FindClient();
CLIENT *client;
int doread = 1;
while (BpfRead(&rconn, doread)) {

View File

@ -1,4 +1,4 @@
/* $NetBSD: rmpproto.c,v 1.7 1996/02/01 21:27:46 mycroft Exp $ */
/* $NetBSD: rmpproto.c,v 1.8 1997/07/28 05:39:21 thorpej Exp $ */
/*
* Copyright (c) 1988, 1992 The University of Utah and the Center
@ -46,9 +46,13 @@
* Author: Jeff Forys, University of Utah CSS
*/
#include <sys/cdefs.h>
#ifndef lint
/*static char sccsid[] = "@(#)rmpproto.c 8.1 (Berkeley) 6/4/93";*/
static char rcsid[] = "$NetBSD: rmpproto.c,v 1.7 1996/02/01 21:27:46 mycroft Exp $";
#if 0
static char sccsid[] = "@(#)rmpproto.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: rmpproto.c,v 1.8 1997/07/28 05:39:21 thorpej Exp $");
#endif
#endif /* not lint */
#include <sys/param.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: utils.c,v 1.6 1995/11/14 08:41:47 thorpej Exp $ */
/* $NetBSD: utils.c,v 1.7 1997/07/28 05:39:22 thorpej Exp $ */
/*
* Copyright (c) 1988, 1992 The University of Utah and the Center
@ -46,9 +46,13 @@
* Author: Jeff Forys, University of Utah CSS
*/
#include <sys/cdefs.h>
#ifndef lint
/*static char sccsid[] = "@(#)utils.c 8.1 (Berkeley) 6/4/93";*/
static char rcsid[] = "$NetBSD: utils.c,v 1.6 1995/11/14 08:41:47 thorpej Exp $";
#if 0
static char sccsid[] = "@(#)utils.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: utils.c,v 1.7 1997/07/28 05:39:22 thorpej Exp $");
#endif
#endif /* not lint */
#include <sys/param.h>