summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2002-07-19 03:16:24 +0000
committerderaadt <deraadt@openbsd.org>2002-07-19 03:16:24 +0000
commit7bcc963dfd22311361f344aa3b51c3ea66ec6475 (patch)
tree3fa75697eff159a96fffc1fae2eee67f976cd708 /usr.bin
parent4344 lines of KNF diff (diff)
downloadwireguard-openbsd-7bcc963dfd22311361f344aa3b51c3ea66ec6475.tar.xz
wireguard-openbsd-7bcc963dfd22311361f344aa3b51c3ea66ec6475.zip
ansi
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ypcat/ypcat.c24
-rw-r--r--usr.bin/ypmatch/ypmatch.c25
-rw-r--r--usr.bin/ypwhich/ypwhich.c52
3 files changed, 41 insertions, 60 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;
}
diff --git a/usr.bin/ypwhich/ypwhich.c b/usr.bin/ypwhich/ypwhich.c
index 2e7fdfd5bf5..d9864542837 100644
--- a/usr.bin/ypwhich/ypwhich.c
+++ b/usr.bin/ypwhich/ypwhich.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ypwhich.c,v 1.12 2002/06/02 06:42:28 deraadt Exp $ */
+/* $OpenBSD: ypwhich.c,v 1.13 2002/07/19 03:20:17 deraadt Exp $ */
/* $NetBSD: ypwhich.c,v 1.6 1996/05/13 02:43:48 thorpej Exp $ */
/*
@@ -34,7 +34,7 @@
*/
#ifndef LINT
-static char rcsid[] = "$Id: ypwhich.c,v 1.12 2002/06/02 06:42:28 deraadt Exp $";
+static char rcsid[] = "$Id: ypwhich.c,v 1.13 2002/07/19 03:20:17 deraadt Exp $";
#endif
#include <sys/param.h>
@@ -73,11 +73,11 @@ struct ypalias {
};
void
-usage()
+usage(void)
{
- fprintf(stderr, "Usage:\n");
- fprintf(stderr, "\typwhich [-d domain] [[-h host] [-t] -m [mname] | host]\n");
- fprintf(stderr, "\typwhich -x\n");
+ fprintf(stderr,
+ "usage: ypwhich [-d domain] [[-h host] [-t] -m [mname] | host]\n");
+ fprintf(stderr, " ypwhich -x\n");
exit(1);
}
@@ -86,16 +86,14 @@ usage()
* Like yp_bind except can query a specific host
*/
int
-bind_host(dom, sin)
-char *dom;
-struct sockaddr_in *sin;
+bind_host(char *dom, struct sockaddr_in *sin)
{
struct hostent *hent = NULL;
struct ypbind_resp ypbr;
+ struct in_addr ss_addr;
struct timeval tv;
CLIENT *client;
int sock, r;
- struct in_addr ss_addr;
sock = RPC_ANYSOCK;
tv.tv_sec = 15;
@@ -139,22 +137,17 @@ struct sockaddr_in *sin;
return 0;
}
-
+
int
-main(argc, argv)
- int argc;
- char **argv;
+main(int argc, char *argv[])
{
- char *domain, *master, *map;
+ char *domain, *master, *map = NULL, *host = NULL;
+ int notrans, mode, getmap, c, r, i;
struct ypmaplist *ypml, *y;
- struct hostent *hent;
struct sockaddr_in sin;
- int notrans, mode, getmap;
- int c, r, i;
- CLIENT *client;
- char *host = NULL;
+ struct hostent *hent;
+ CLIENT *client = NULL;
- map = NULL;
getmap = notrans = mode = 0;
yp_get_default_domain(&domain);
@@ -221,21 +214,20 @@ main(argc, argv)
if (argc > 1)
usage();
- if (host != NULL) {
+ if (host != NULL)
client = yp_bind_host(host,YPPROG,YPVERS,0,1);
- }
-
+
if (argv[0]) {
map = argv[0];
for (i=0; (!notrans) && i<sizeof ypaliases/sizeof ypaliases[0]; i++)
if (strcmp(map, ypaliases[i].alias) == 0)
map = ypaliases[i].name;
- if (host != NULL) {
+ if (host != NULL)
r = yp_master_host(client, domain, map, &master);
- } else {
+ else
r = yp_master(domain, map, &master);
- }
+
switch (r) {
case 0:
printf("%s\n", master);
@@ -253,11 +245,11 @@ main(argc, argv)
}
ypml = NULL;
- if (host != NULL) {
+ if (host != NULL)
r = yp_maplist_host(client, domain, &ypml);
- } else {
+ else
r = yp_maplist(domain, &ypml);
- }
+
r = 0;
switch (r) {
case 0: