From owner-cvs-all Fri Dec 14 3:54:49 2001 Delivered-To: cvs-all@freebsd.org Received: from gvr.gvr.org (gvr.gvr.org [212.61.40.17]) by hub.freebsd.org (Postfix) with ESMTP id 51A9B37B416; Fri, 14 Dec 2001 03:54:41 -0800 (PST) Received: by gvr.gvr.org (Postfix, from userid 657) id C21BF5809; Fri, 14 Dec 2001 12:54:38 +0100 (CET) Date: Fri, 14 Dec 2001 12:54:38 +0100 From: Guido van Rooij To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/periodic/security 550.ipfwlimit 650.ip6fwlimit Message-ID: <20011214125438.A35615@gvr.gvr.org> References: <200112140858.fBE8wL596075@freefall.freebsd.org> <20011214115711.A34932@gvr.gvr.org> <20011214135243.B64853@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011214135243.B64853@sunbay.com>; from ru@FreeBSD.org on Fri, Dec 14, 2001 at 01:52:43PM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Dec 14, 2001 at 01:52:43PM +0200, Ruslan Ermilov wrote: > On Fri, Dec 14, 2001 at 11:57:11AM +0100, Guido van Rooij wrote: > > On Fri, Dec 14, 2001 at 12:58:21AM -0800, Ruslan Ermilov wrote: > > > ru 2001/12/14 00:58:21 PST > > > > > > Modified files: > > > etc/periodic/security 550.ipfwlimit 650.ip6fwlimit > > > Log: > > > Work around the bugfeature of test(1). > > > > > > PR: bin/32822 > > > > > > If I run this: > > if [ 0 -eq 0 -a "" -ne 1 ]; > > then echo foo > > fi > > then it works. Isn't the real problem that "${IPFW_LOG_LIMIT}" gets lost > > somehow? > > > Nope, try this: > > FOO= > if [ 0 -eq 1 -a ${FOO} -ne 1 ]; then > echo OK > fi > > An alternate solution would be to write: > > if [ 0 -eq 1 -a "${FOO}" -ne 1 ]; then But that is what was in /etc/security.. So why did it fail? -Guido To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message