cvs commit: src/etc rc.shutdown

[ Available lists | Index of cvs-src | Month of Oct 2004 | Week of 17 Oct 2004 | Raw email | View thread | Wrap long lines | Reply ]
From
Jens Schweikhardt <schweikh@FreeBSD.org>
Date
17 Oct 2004 13:39:42
Subject
cvs commit: src/etc rc.shutdown
Message-ID
200410171339.i9HDdg8p097367@repoman.freebsd.org


[ Hide this part ]
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


Elapsed time: 0.044 seconds