Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 Oct 2004 13:39:42 +0000 (UTC)
From:      Jens Schweikhardt <schweikh@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/etc rc.shutdown
Message-ID:  <200410171339.i9HDdg8p097367@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200410171339.i9HDdg8p097367>