From owner-svn-src-all@FreeBSD.ORG Sun Jan 17 11:10:25 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B5EF1065672; Sun, 17 Jan 2010 11:10:25 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2AB998FC13; Sun, 17 Jan 2010 11:10:25 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o0HBAPaq002879; Sun, 17 Jan 2010 11:10:25 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o0HBAPmc002877; Sun, 17 Jan 2010 11:10:25 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201001171110.o0HBAPmc002877@svn.freebsd.org> From: Gavin Atkinson Date: Sun, 17 Jan 2010 11:10:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r202464 - stable/8/etc/rc.d X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jan 2010 11:10:25 -0000 Author: gavin Date: Sun Jan 17 11:10:24 2010 New Revision: 202464 URL: http://svn.freebsd.org/changeset/base/202464 Log: Merge r201440, r201445 from head: Don't complain when we encounter the "cache" source, it's valid. Also fix the error message to include a line feed and not include a stray comma. Submitted by: Artis Caune artis.caune gmail.com While here, change "> /dev/stderr" for more usual ">&2" Submitted by: jilles PR: bin/121671 Approved by: ed (mentor, implicit) Modified: stable/8/etc/rc.d/nsswitch Directory Properties: stable/8/etc/rc.d/ (props changed) Modified: stable/8/etc/rc.d/nsswitch ============================================================================== --- stable/8/etc/rc.d/nsswitch Sun Jan 17 10:59:07 2010 (r202463) +++ stable/8/etc/rc.d/nsswitch Sun Jan 17 11:10:24 2010 (r202464) @@ -77,10 +77,10 @@ generate_host_conf() nis) echo "nis" >> $host_conf ;; - *=*) + cache | *=*) ;; *) - printf "Warning: unrecognized source [%s]", $_s > "/dev/stderr" + printf "Warning: unrecognized source [%s]\n" $_s >&2 ;; esac done