schweikh 2004-10-17 13:39:42 UTC
FreeBSD src repository
Modified files:
etc rc.shutdown
Log:
Fix a bogus variable assignment. You can't expect
_msg="a" \
" b"
to concat the strings. Use
_msg="a"
_msg="$_msg b"
instead (intent is to not exceed 80 chars per line).
MFC after: 1 week
Revision Changes Path
1.29 +2 -2 src/etc/rc.shutdown