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

Warner Losh imp at FreeBSD.org
Mon Sep 27 15:55:39 UTC 2010


Author: imp
Date: Mon Sep 27 15:55:39 2010
New Revision: 213202
URL: http://svn.freebsd.org/changeset/base/213202

Log:
  Prefer echo over printf

Modified:
  head/etc/rc.d/nsswitch

Modified: head/etc/rc.d/nsswitch
==============================================================================
--- head/etc/rc.d/nsswitch	Mon Sep 27 15:55:30 2010	(r213201)
+++ head/etc/rc.d/nsswitch	Mon Sep 27 15:55:39 2010	(r213202)
@@ -80,7 +80,7 @@ generate_host_conf()
 	cache | *=*)
 		;;
 	*)
-		printf "Warning: unrecognized source [%s]\n" $_s >&2
+		echo "Warning: unrecognized source [$_s]" >&2
 		;;
 	esac
     done


More information about the svn-src-head mailing list