summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-07-19 03:22:40 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-07-19 03:22:40 +0000
commit8077c2cc89a167b5240d3176432474695933bd95 (patch)
treedb80861fcf823b8f01cf8b788ef68fa9212ff559 /usr.bin
parent0795c6038b2088a3a708bb3faf96520346528b31 (diff)
ansi
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ypcat/ypcat.c24
-rw-r--r--usr.bin/ypmatch/ypmatch.c25
2 files changed, 19 insertions, 30 deletions
diff --git a/usr.bin/ypcat/ypcat.c b/usr.bin/ypcat/ypcat.c
index e7177ac21f2..35f058d3158 100644
--- a/usr.bin/ypcat/ypcat.c
+++ b/usr.bin/ypcat/ypcat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ypcat.c,v 1.7 2002/01/02 20:07:09 deraadt Exp $ */
+/* $OpenBSD: ypcat.c,v 1.8 2002/07/19 03:21:41 deraadt Exp $ */
/*
* Copyright (c) 1992, 1993, 1996 Theo de Raadt <deraadt@theos.com>
@@ -33,7 +33,7 @@
*/
#ifndef LINT
-static char rcsid[] = "$OpenBSD: ypcat.c,v 1.7 2002/01/02 20:07:09 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: ypcat.c,v 1.8 2002/07/19 03:21:41 deraadt Exp $";
#endif
#include <sys/param.h>
@@ -66,7 +66,7 @@ struct ypalias {
int key;
void
-usage()
+usage(void)
{
fprintf(stderr, "Usage:\n");
fprintf(stderr, "\typcat [-k] [-d domainname] [-t] mapname\n");
@@ -75,13 +75,8 @@ usage()
}
int
-printit(instatus, inkey, inkeylen, inval, invallen, indata)
-int instatus;
-char *inkey;
-int inkeylen;
-char *inval;
-int invallen;
-char *indata;
+printit(u_long instatus, char *inkey, int inkeylen, char *inval, int invallen,
+ void *indata)
{
if (instatus != YP_TRUE)
return instatus;
@@ -92,16 +87,13 @@ char *indata;
}
int
-main(argc, argv)
-char **argv;
+main(int argc, char *argv[])
{
- char *domain = NULL;
+ char *domain = NULL, *inmap;
struct ypall_callback ypcb;
- char *inmap;
extern char *optarg;
extern int optind;
- int notrans;
- int c, r, i;
+ int notrans, c, r, i;
notrans = key = 0;
while ((c=getopt(argc, argv, "xd:kt")) != -1)
diff --git a/usr.bin/ypmatch/ypmatch.c b/usr.bin/ypmatch/ypmatch.c
index 0750793e34a..8633476deec 100644
--- a/usr.bin/ypmatch/ypmatch.c
+++ b/usr.bin/ypmatch/ypmatch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ypmatch.c,v 1.7 2002/06/02 06:42:28 deraadt Exp $ */
+/* $OpenBSD: ypmatch.c,v 1.8 2002/07/19 03:22:39 deraadt Exp $ */
/* $NetBSD: ypmatch.c,v 1.8 1996/05/07 01:24:52 jtc Exp $ */
/*
@@ -34,7 +34,7 @@
*/
#ifndef LINT
-static char rcsid[] = "$OpenBSD: ypmatch.c,v 1.7 2002/06/02 06:42:28 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: ypmatch.c,v 1.8 2002/07/19 03:22:39 deraadt Exp $";
#endif
#include <sys/param.h>
@@ -64,7 +64,7 @@ struct ypalias {
};
void
-usage()
+usage(void)
{
fprintf(stderr, "Usage:\n");
fprintf(stderr, "\typmatch [-d domain] [-t] [-k] key [key ...] mname\n");
@@ -78,20 +78,17 @@ usage()
}
int
-main(argc, argv)
-char **argv;
+main(int argc, char *argv[])
{
- char *domainname;
- char *inkey, *inmap, *outbuf;
+ char *domainname, *inkey, *inmap, *outbuf;
extern char *optarg;
extern int optind;
- int outbuflen, key, notrans;
+ int outbuflen, key, notrans, rval;
int c, r, i;
- int rval;
domainname = NULL;
notrans = key = 0;
- while( (c=getopt(argc, argv, "xd:kt")) != -1)
+ while ((c=getopt(argc, argv, "xd:kt")) != -1)
switch (c) {
case 'x':
for(i=0; i<sizeof ypaliases/sizeof ypaliases[0]; i++)
@@ -112,7 +109,7 @@ char **argv;
usage();
}
- if( (argc-optind) < 2 )
+ if ((argc-optind) < 2 )
usage();
if (!domainname) {
@@ -122,7 +119,7 @@ char **argv;
inmap = argv[argc-1];
if (!notrans) {
for(i=0; i<sizeof ypaliases/sizeof ypaliases[0]; i++)
- if( strcmp(inmap, ypaliases[i].alias) == 0)
+ if (strcmp(inmap, ypaliases[i].alias) == 0)
inmap = ypaliases[i].name;
}
@@ -134,7 +131,7 @@ char **argv;
strlen(inkey), &outbuf, &outbuflen);
switch (r) {
case 0:
- if(key)
+ if (key)
printf("%s: ", inkey);
printf("%*.*s\n", outbuflen, outbuflen, outbuf);
break;
@@ -143,7 +140,7 @@ char **argv;
exit(1);
default:
fprintf(stderr, "Can't match key %s in map %s. Reason: %s\n",
- inkey, inmap, yperr_string(r));
+ inkey, inmap, yperr_string(r));
rval = 1;
break;
}