From owner-cvs-src-old@FreeBSD.ORG Sun Aug 15 08:44:42 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10A781065788 for ; Sun, 15 Aug 2010 08:44:42 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 747A78FC0A for ; Sun, 15 Aug 2010 08:44:40 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o7F8ieYp086493 for ; Sun, 15 Aug 2010 08:44:40 GMT (envelope-from imp@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o7F8ieFv086492 for cvs-src-old@freebsd.org; Sun, 15 Aug 2010 08:44:40 GMT (envelope-from imp@repoman.freebsd.org) Message-Id: <201008150844.o7F8ieFv086492@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to imp@repoman.freebsd.org using -f From: Warner Losh Date: Sun, 15 Aug 2010 08:44:32 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/config mkoptions.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2010 08:44:42 -0000 imp 2010-08-15 08:44:32 UTC FreeBSD src repository Modified files: usr.sbin/config mkoptions.c Log: SVN rev 211325 on 2010-08-15 08:44:32Z by imp Turns out that it is a bad idea to have a missing compat option be a fatal condition. While it works out really well for diagnosing the case where you want it, but don't have it, it works really badly for the case where you don't have it and don't want it. Remove the printf and exit pair. Replate it with simple return to silently ignore this condition. This is needed to fix the COMPAT_IA32 being required in options.* in stable, but we need to run this change through -current first... MFC after: 3 days Revision Changes Path 1.41 +5 -3 src/usr.sbin/config/mkoptions.c