diff options
| author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-05-12 04:56:28 +0000 |
|---|---|---|
| committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-05-12 04:56:28 +0000 |
| commit | ba0879629f289788a5b797e33befd9836b4176a7 (patch) | |
| tree | 8e17f987805221914df8d611689d912c7fcb3ad8 | |
| parent | 15f1b0964853ea7921714293b01d66fdcaeec373 (diff) | |
Notes
| -rw-r--r-- | gnu/usr.bin/man/man/man.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/man/man/man.c b/gnu/usr.bin/man/man/man.c index 806f230d808e..94840e6c62ee 100644 --- a/gnu/usr.bin/man/man/man.c +++ b/gnu/usr.bin/man/man/man.c @@ -269,11 +269,11 @@ add_dir_to_mpath_list (mp, p) status = is_directory (p); - if (status < 0) + if (status < 0 && debug) { fprintf (stderr, "Warning: couldn't stat file %s!\n", p); } - else if (status == 0) + else if (status == 0 && debug) { fprintf (stderr, "Warning: %s isn't a directory!\n", p); } |
