From acf06cc72a33d516ee1ff68b4480e3bca706f91a Mon Sep 17 00:00:00 2001 From: markm Date: Tue, 11 Dec 2001 22:08:58 +0000 Subject: WARNS=2 fixes __FBSDID() additions some include file sorting. Some Makefile sorting. WARNS?=2 is not added to the Makefile, because it is going to be default for usr.bin/ NO_WERROR is set because there are rpc*.h file issues. --- usr.bin/ypcat/Makefile | 1 + usr.bin/ypcat/ypcat.c | 38 ++++++++++++++++---------------------- 2 files changed, 17 insertions(+), 22 deletions(-) (limited to 'usr.bin/ypcat') diff --git a/usr.bin/ypcat/Makefile b/usr.bin/ypcat/Makefile index 58ee690..f1bd8e6 100644 --- a/usr.bin/ypcat/Makefile +++ b/usr.bin/ypcat/Makefile @@ -2,5 +2,6 @@ # $FreeBSD$ PROG= ypcat +NO_WERROR=yes .include diff --git a/usr.bin/ypcat/ypcat.c b/usr.bin/ypcat/ypcat.c index f2cb022..0fd91ec 100644 --- a/usr.bin/ypcat/ypcat.c +++ b/usr.bin/ypcat/ypcat.c @@ -27,14 +27,19 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include + +__FBSDID("$FreeBSD$"); #include #include #include + +#include +#include +#include +#include + #include #include #include @@ -42,13 +47,8 @@ static const char rcsid[] = #include #include -#include -#include -#include -#include - struct ypalias { - char *alias, *name; + const char *alias, *name; } ypaliases[] = { { "passwd", "passwd.byname" }, { "master.passwd", "master.passwd.byname" }, @@ -64,7 +64,7 @@ struct ypalias { int key; static void -usage() +usage(void) { fprintf(stderr, "%s\n%s\n", "usage: ypcat [-k] [-d domainname] [-t] mapname", @@ -72,14 +72,8 @@ usage() exit(1); } -int -printit(instatus, inkey, inkeylen, inval, invallen, indata) -int instatus; -char *inkey; -int inkeylen; -char *inval; -int invallen; -char *indata; +static int +printit(unsigned long instatus, char *inkey, int inkeylen, char *inval, int invallen, void *dummy __unused) { if(instatus != YP_TRUE) return instatus; @@ -90,14 +84,14 @@ char *indata; } int -main(argc, argv) -char **argv; +main(int argc, char *argv[]) { char *domainname = NULL; struct ypall_callback ypcb; char *inmap; int notrans; - int c, r, i; + int c, r; + u_int i; notrans = key = 0; -- cgit v1.1