Date: Sun, 3 Jan 2010 19:14:22 +0000 (UTC) From: Gavin Atkinson <gavin@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r201440 - head/etc/rc.d Message-ID: <201001031914.o03JEMpB026146@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201001031914.o03JEMpB026146>