From owner-cvs-etc Tue Jul 30 00:28:51 1996 Return-Path: owner-cvs-etc Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA26996 for cvs-etc-outgoing; Tue, 30 Jul 1996 00:28:51 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id AAA26991; Tue, 30 Jul 1996 00:28:39 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id RAA07220; Tue, 30 Jul 1996 17:20:46 +1000 Date: Tue, 30 Jul 1996 17:20:46 +1000 From: Bruce Evans Message-Id: <199607300720.RAA07220@godzilla.zeta.org.au> To: CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-etc@freefall.freebsd.org, jkh@freefall.freebsd.org Subject: Re: cvs commit: src/etc rc Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Modified: etc rc > Log: > Edit this for consistency's sake (though it's syntactically identical). > Noticed-By: "William A. Gill" > > Revision Changes Path > 1.96 +2 -2 src/etc/rc There are many more inconsistencies in sysconfig. NO is sometimes quoted and sometimes not. Mostly not. Quoting it mainly wastes space. Also, in rc, some (poor) comments say that the test is $foo != NO, but the test is actually "X${foo}" != X"NO". The braces mainly waste space. Other (poor) comments say that the test is $foo == NO for the reverse condition, but == isn't an operator for `test'. Bruce