summaryrefslogtreecommitdiffstats
path: root/apropos.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2013-07-05 09:33:02 +0000
committerIngo Schwarze <schwarze@openbsd.org>2013-07-05 09:33:02 +0000
commitefe350390b3c05f914ca4cc6f33f97842a2d2e79 (patch)
tree8943fc1674c7809be3ba47aa6a58363ee7ba8e36 /apropos.c
parent18003a6408dddfa38fda8ae4eecc43ff5cd1cc55 (diff)
downloadmandoc-efe350390b3c05f914ca4cc6f33f97842a2d2e79.tar.gz
Simple partial sync with OpenBSD:
* Again accept suffixes on the name of the whatis utility. * The usage line for whatis must not invite expressions. * Revert the argument names in the SYNOPSIS back to the usual ones. * Revert a few gratuitious changes regarding line breaks etc.
Diffstat (limited to 'apropos.c')
-rw-r--r--apropos.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/apropos.c b/apropos.c
index dc7b5f48..cd97e779 100644
--- a/apropos.c
+++ b/apropos.c
@@ -37,8 +37,9 @@ main(int argc, char *argv[])
struct mansearch search;
size_t i, sz;
struct manpage *res;
- char *conf_file, *defpaths, *auxpaths;
struct manpaths paths;
+ char *defpaths, *auxpaths;
+ char *conf_file;
char *progname;
extern char *optarg;
extern int optind;
@@ -49,10 +50,13 @@ main(int argc, char *argv[])
else
++progname;
- auxpaths = defpaths = conf_file = NULL;
+ whatis = (0 == strncmp(progname, "whatis", 6));
+
memset(&paths, 0, sizeof(struct manpaths));
memset(&search, 0, sizeof(struct mansearch));
- whatis = (0 == strcmp(progname, "whatis"));
+
+ auxpaths = defpaths = NULL;
+ conf_file = NULL;
while (-1 != (ch = getopt(argc, argv, "C:M:m:S:s:")))
switch (ch) {
@@ -99,12 +103,8 @@ main(int argc, char *argv[])
free(res);
return(sz ? EXIT_SUCCESS : EXIT_FAILURE);
usage:
- fprintf(stderr, "usage: %s [-C conf] "
- "[-M paths] "
- "[-m paths] "
- "[-S arch] "
- "[-s section] "
- "expr ...\n",
- progname);
+ fprintf(stderr, "usage: %s [-C file] [-M path] [-m path] "
+ "[-S arch] [-s section]%s ...\n", progname,
+ whatis ? " name" : "\n expression");
return(EXIT_FAILURE);
}