diff options
author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-05-30 05:05:38 +0000 |
---|---|---|
committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-05-30 05:05:38 +0000 |
commit | 4399be3cbd35324f7a2c00d77229d995b4022138 (patch) | |
tree | a3959baf797787918878bec6d58d6a0fb743ad0a /gnu/usr.bin/man/manpath/manpath.c | |
parent | 709e8f9ae1d734c1a163c9b421df4b8153939ce7 (diff) |
Notes
Diffstat (limited to 'gnu/usr.bin/man/manpath/manpath.c')
-rw-r--r-- | gnu/usr.bin/man/manpath/manpath.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/man/manpath/manpath.c b/gnu/usr.bin/man/manpath/manpath.c index ccf7a55684345..294ffaf99830a 100644 --- a/gnu/usr.bin/man/manpath/manpath.c +++ b/gnu/usr.bin/man/manpath/manpath.c @@ -5,7 +5,7 @@ * * You may distribute under the terms of the GNU General Public * License as specified in the file COPYING that comes with the man - * distribution. + * distribution. * * John W. Eaton * jwe@che.utexas.edu @@ -490,7 +490,7 @@ add_dir_to_list (lp, dir, perrs) /* * Check to see if the current directory has man or MAN - * subdirectories. + * subdirectories. */ char * has_subdirs (p) @@ -507,12 +507,12 @@ has_subdirs (p) memcpy (t, p, len); strcpy (t + len, "/man"); - + if (is_directory (t) == 1) return t; strcpy (t + len, "/MAN"); - + if (is_directory (t) == 1) return t; |