From owner-svn-src-all@FreeBSD.ORG Sun Jan 3 19:14:22 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 E9AB11065698; Sun, 3 Jan 2010 19:14:22 +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 D8F6C8FC18; Sun, 3 Jan 2010 19:14:22 +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 o03JEMOn026148; Sun, 3 Jan 2010 19:14:22 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o03JEMpB026146; Sun, 3 Jan 2010 19:14:22 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201001031914.o03JEMpB026146@svn.freebsd.org> From: Gavin Atkinson Date: Sun, 3 Jan 2010 19:14:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r201440 - head/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, 03 Jan 2010 19:14:23 -0000 Author: gavin Date: Sun Jan 3 19:14:22 2010 New Revision: 201440 URL: http://svn.freebsd.org/changeset/base/201440 Log: The default hash table size is 257 not 255. Reword the rest of the line slightly while here. PR: bin/121671 Submitted by: Artis Caune artis.caune gmail.com Approved by: ed (mentor) Modified: head/etc/rc.d/nsswitch Modified: head/etc/rc.d/nsswitch ============================================================================== --- head/etc/rc.d/nsswitch Sun Jan 3 18:27:10 2010 (r201439) +++ head/etc/rc.d/nsswitch Sun Jan 3 19:14:22 2010 (r201440) @@ -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 > "/dev/stderr" ;; esac done