Call the path for makewhatis _PATH_MAKEWHATIS instead of _PATH_WHATIS,

for clarity.
This commit is contained in:
dholland 2016-05-29 22:33:39 +00:00
parent 5f3c7438e2
commit 2e499a79d1
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: catman.c,v 1.36 2016/05/29 22:09:51 dholland Exp $ */
/* $NetBSD: catman.c,v 1.37 2016/05/29 22:33:39 dholland Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -30,7 +30,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: catman.c,v 1.36 2016/05/29 22:09:51 dholland Exp $");
__RCSID("$NetBSD: catman.c,v 1.37 2016/05/29 22:33:39 dholland Exp $");
#endif /* not lint */
#include <sys/types.h>
@ -602,7 +602,7 @@ makewhatis(void)
err(1, "malloc");
TAILQ_FOREACH(e_whatdb, &whatdbp->entrylist, q) {
snprintf(sysbuf, sizeof(sysbuf), "%s %s",
_PATH_WHATIS, dirname(e_whatdb->s));
_PATH_MAKEWHATIS, dirname(e_whatdb->s));
if (f_noprint == 0)
printf("%s\n", sysbuf);
if (f_noaction == 0)

View File

@ -1,4 +1,4 @@
/* $NetBSD: pathnames.h,v 1.5 2003/08/07 11:25:13 agc Exp $ */
/* $NetBSD: pathnames.h,v 1.6 2016/05/29 22:33:39 dholland Exp $ */
/*
* Copyright (c) 1989, 1993
@ -34,4 +34,4 @@
#define _PATH_MANCONF "/etc/man.conf"
#define _PATH_PAGER "/usr/bin/more -s"
#define _PATH_TMP "/tmp/man.XXXXXX"
#define _PATH_WHATIS "/usr/libexec/makewhatis"
#define _PATH_MAKEWHATIS "/usr/libexec/makewhatis"