svn commit: r201440 - head/etc/rc.d

Gavin Atkinson gavin at FreeBSD.org
Sun Jan 3 19:14:23 UTC 2010


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


More information about the svn-src-all mailing list