summaryrefslogtreecommitdiffstats
path: root/usr.bin/man
diff options
context:
space:
mode:
authorgordon <gordon@FreeBSD.org>2010-10-02 06:55:04 +0000
committergordon <gordon@FreeBSD.org>2010-10-02 06:55:04 +0000
commit2b449d5f12aee5bef6c303a7d3ca124d22fd795b (patch)
treedc0449d7ed0ee0c869254ce84258a791c3a114bc /usr.bin/man
parent2d1121be27a4b3fe694bb1cf62160fafb9e683c9 (diff)
downloadFreeBSD-src-2b449d5f12aee5bef6c303a7d3ca124d22fd795b.zip
FreeBSD-src-2b449d5f12aee5bef6c303a7d3ca124d22fd795b.tar.gz
Fix up whatis/apropos issue displaying all output on a single due to
forgotten quotes. Submitted by: Brandon Gooch Approved by: wes (mentor, implicit)
Diffstat (limited to 'usr.bin/man')
-rwxr-xr-xusr.bin/man/man.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/man/man.sh b/usr.bin/man/man.sh
index f8da4da..a008029 100755
--- a/usr.bin/man/man.sh
+++ b/usr.bin/man/man.sh
@@ -719,11 +719,11 @@ search_whatis() {
bad=${bad#\\n}
if [ -n "$good" ]; then
- echo -e $good | $PAGER
+ echo -e "$good" | $PAGER
fi
if [ -n "$bad" ]; then
- echo -e $bad >&2
+ echo -e "$bad" >&2
fi
exit $rval
OpenPOWER on IntegriCloud