diff options
author | des <des@FreeBSD.org> | 2002-02-06 13:30:31 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-02-06 13:30:31 +0000 |
commit | 0f2cb9b020b907000a28323fc57a82fdb7d6626d (patch) | |
tree | d44f2702502c982570c85130c91c845a83ea8052 /usr.bin/ypmatch | |
parent | 0e1bb965cc26648289a6a22baf0ad5ef4891edb4 (diff) | |
download | FreeBSD-src-0f2cb9b020b907000a28323fc57a82fdb7d6626d.zip FreeBSD-src-0f2cb9b020b907000a28323fc57a82fdb7d6626d.tar.gz |
Apply the following mechanical transformations in preparation for
ansification and constification:
s{\s+__P\((\(.*?\))\)}{$1}g;
s{\(\s+}{\(}g;
s{\s+\)}{\)}g;
s{\s+,}{,}g;
s{(\s+)(for|if|switch|while)\(}{$1$2 \(}g;
s{return ([^\(].*?);}{return ($1);}g;
s{([\w\)])([!=+/\*-]?=)([\w\(+-])}{$1 $2 $3}g;
s{\s+$}{\n};g
Also add $FreeBSD$ where needed.
MFC after: 1 week
Diffstat (limited to 'usr.bin/ypmatch')
-rw-r--r-- | usr.bin/ypmatch/ypmatch.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/usr.bin/ypmatch/ypmatch.c b/usr.bin/ypmatch/ypmatch.c index d9193b2..e85f335 100644 --- a/usr.bin/ypmatch/ypmatch.c +++ b/usr.bin/ypmatch/ypmatch.c @@ -81,10 +81,10 @@ main(int argc, char *argv[]) notrans = key = 0; - while( (c=getopt(argc, argv, "xd:kt")) != -1) - switch(c) { + while ((c = getopt(argc, argv, "xd:kt")) != -1) + switch (c) { case 'x': - for(i=0; i<sizeof ypaliases/sizeof ypaliases[0]; i++) + for (i = 0; i<sizeof ypaliases/sizeof ypaliases[0]; i++) printf("Use \"%s\" for \"%s\"\n", ypaliases[i].alias, ypaliases[i].name); @@ -102,24 +102,24 @@ main(int argc, char *argv[]) usage(); } - if( (argc-optind) < 2 ) + if ((argc-optind) < 2) usage(); if (!domainname) yp_get_default_domain(&domainname); inmap = argv[argc-1]; - for(i=0; (!notrans) && i<sizeof ypaliases/sizeof ypaliases[0]; i++) - if( strcmp(inmap, ypaliases[i].alias) == 0) + for (i = 0; (!notrans) && i<sizeof ypaliases/sizeof ypaliases[0]; i++) + if (strcmp(inmap, ypaliases[i].alias) == 0) inmap = ypaliases[i].name; - for(; optind < argc-1; optind++) { + for (; optind < argc-1; optind++) { inkey = argv[optind]; r = yp_match(domainname, inmap, inkey, strlen(inkey), &outbuf, &outbuflen); - switch(r) { + switch (r) { case 0: - if(key) + if (key) printf("%s ", inkey); printf("%*.*s\n", outbuflen, outbuflen, outbuf); break; |