diff options
author | steve <steve@FreeBSD.org> | 1997-11-30 01:01:47 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1997-11-30 01:01:47 +0000 |
commit | 6ee55c14c9979f38ffcdf2925a417bd08bb4011a (patch) | |
tree | cb0af3d222110822dde8a0d28d7124fbcd0d90c9 | |
parent | 3d7b8e55f414c0f6368139fe1b93a9d53715e204 (diff) | |
download | FreeBSD-src-6ee55c14c9979f38ffcdf2925a417bd08bb4011a.zip FreeBSD-src-6ee55c14c9979f38ffcdf2925a417bd08bb4011a.tar.gz |
Always call gripe_reading_mp_config with the required arguments.
PR: 3894
Submitted by: Stephen Clawson <sclawson@marker.cs.utah.edu>
-rw-r--r-- | gnu/usr.bin/man/man/manpath.c | 4 | ||||
-rw-r--r-- | gnu/usr.bin/man/manpath/manpath.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/man/man/manpath.c b/gnu/usr.bin/man/man/manpath.c index cdc370c..c988cd2ac 100644 --- a/gnu/usr.bin/man/man/manpath.c +++ b/gnu/usr.bin/man/man/manpath.c @@ -135,7 +135,7 @@ manpath (perrs) char *get_manpath (); if (get_dirlist ()) - gripe_reading_mp_config (); + gripe_reading_mp_config (config_file); if ((manpathlist = getenv ("MANPATH")) != NULL) /* @@ -258,7 +258,7 @@ get_dirlist () } else { - gripe_reading_mp_config (); + gripe_reading_mp_config (config_file); } dlp++; } diff --git a/gnu/usr.bin/man/manpath/manpath.c b/gnu/usr.bin/man/manpath/manpath.c index 294ffaf..2fcbe0b 100644 --- a/gnu/usr.bin/man/manpath/manpath.c +++ b/gnu/usr.bin/man/manpath/manpath.c @@ -135,7 +135,7 @@ manpath (perrs) char *get_manpath (); if (get_dirlist ()) - gripe_reading_mp_config (); + gripe_reading_mp_config (config_file); if ((manpathlist = getenv ("MANPATH")) != NULL) /* @@ -254,7 +254,7 @@ get_dirlist () } else { - gripe_reading_mp_config (); + gripe_reading_mp_config (config_file); } dlp++; } |