From owner-svn-src-all@FreeBSD.ORG Sun Sep 8 16:48:04 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 09677C3A; Sun, 8 Sep 2013 16:48:04 +0000 (UTC) (envelope-from markm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EB413266D; Sun, 8 Sep 2013 16:48:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r88Gm30K008497; Sun, 8 Sep 2013 16:48:03 GMT (envelope-from markm@svn.freebsd.org) Received: (from markm@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r88Gm3mh008496; Sun, 8 Sep 2013 16:48:03 GMT (envelope-from markm@svn.freebsd.org) Message-Id: <201309081648.r88Gm3mh008496@svn.freebsd.org> From: Mark Murray Date: Sun, 8 Sep 2013 16:48:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r255391 - head/sys/dev/random X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 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, 08 Sep 2013 16:48:04 -0000 Author: markm Date: Sun Sep 8 16:48:03 2013 New Revision: 255391 URL: http://svnweb.freebsd.org/changeset/base/255391 Log: Fix verbose output line; needs Submitted by: Sean Bruno Approved by: re (glebius) Modified: head/sys/dev/random/random_adaptors.c Modified: head/sys/dev/random/random_adaptors.c ============================================================================== --- head/sys/dev/random/random_adaptors.c Sun Sep 8 15:44:34 2013 (r255390) +++ head/sys/dev/random/random_adaptors.c Sun Sep 8 16:48:03 2013 (r255391) @@ -177,7 +177,7 @@ random_adaptor_choose(struct random_adap } if (bootverbose && *adaptor) - printf("Falling back to <%s> random adaptor", + printf("Falling back to <%s> random adaptor\n", (*adaptor)->ident); } }