Remove excess spaces from rc.d scripts

The space between words is already being echoed by the space between quoted strings:

    % echo 'foo' 'bar'
    foo bar

    % echo 'foo' ' baz'
    foo  baz

Found in `ipfw` and `mountlate` messages.

PR:		247948
Submitted by:	Jose Luis Duran <jlduran@gmail.com>
MFC after:	2 weeks
Sponsored by:	Klara Inc.
This commit is contained in:
Allan Jude 2020-07-13 13:44:54 +00:00
parent b2776a1809
commit fb6b5cd016
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=363142
2 changed files with 2 additions and 2 deletions

View file

@ -63,7 +63,7 @@ ipfw_start()
echo 'Firewall rules loaded.'
elif [ "`ipfw list 65535`" = "65535 deny ip from any to any" ]; then
echo 'Warning: kernel has firewall functionality, but' \
' firewall rules are not enabled.'
'firewall rules are not enabled.'
echo ' All ip services are disabled.'
fi

View file

@ -32,7 +32,7 @@ mountlate_start()
;;
*)
echo 'Mounting /etc/fstab filesystems failed,' \
' startup aborted'
'startup aborted'
stop_boot true
;;
esac