From 6ee55c14c9979f38ffcdf2925a417bd08bb4011a Mon Sep 17 00:00:00 2001 From: steve Date: Sun, 30 Nov 1997 01:01:47 +0000 Subject: [PATCH] Always call gripe_reading_mp_config with the required arguments. PR: 3894 Submitted by: Stephen Clawson --- gnu/usr.bin/man/man/manpath.c | 4 ++-- 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 cdc370cd617..c988cd2acc9 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 294ffaf9983..2fcbe0bc8a8 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++; } -- 2.45.2