From owner-cvs-src@FreeBSD.ORG Fri Nov 14 03:23:27 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C5F516A4CE; Fri, 14 Nov 2003 03:23:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA91E43F85; Fri, 14 Nov 2003 03:23:26 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAEBNQXJ020325; Fri, 14 Nov 2003 03:23:26 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAEBNQWC020324; Fri, 14 Nov 2003 03:23:26 -0800 (PST) (envelope-from bde) Message-Id: <200311141123.hAEBNQWC020324@repoman.freebsd.org> From: Bruce Evans Date: Fri, 14 Nov 2003 03:23:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/config config.y X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Nov 2003 11:23:27 -0000 bde 2003/11/14 03:23:26 PST FreeBSD src repository Modified files: usr.sbin/config config.y Log: Fixed spurious syntax errors for including files that don't begin with a SEMICOLON token (a newline or semicolon, or one of these preceded by a comment and/or whitespace). The input stream was switched too early and the parser was expecting a SEMICOLON in the included file instead of after the filename in the include directive. Submitted by: Stefan Farfeleder Kept alive by: Adam C. Migus Revision Changes Path 1.62 +4 -3 src/usr.sbin/config/config.y