From owner-svn-src-head@FreeBSD.ORG Wed Jun 17 12:43:10 2015 Return-Path: Delivered-To: svn-src-head@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2BE8C2EFA; Wed, 17 Jun 2015 12:43:09 +0000 (UTC) (envelope-from bz@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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D504EC42; Wed, 17 Jun 2015 12:43:09 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5HAKxYF097540; Wed, 17 Jun 2015 10:20:59 GMT (envelope-from bz@FreeBSD.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5HAKxf5097539; Wed, 17 Jun 2015 10:20:59 GMT (envelope-from bz@FreeBSD.org) Message-Id: <201506171020.t5HAKxf5097539@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bz set sender to bz@FreeBSD.org using -f From: "Bjoern A. Zeeb" Date: Wed, 17 Jun 2015 10:20:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r284508 - head/sys/ddb X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 12:43:10 -0000 Author: bz Date: Wed Jun 17 10:20:59 2015 New Revision: 284508 URL: https://svnweb.freebsd.org/changeset/base/284508 Log: Correct the function name in catch-all error handling case. MFC after: 1 week Modified: head/sys/ddb/db_sym.c Modified: head/sys/ddb/db_sym.c ============================================================================== --- head/sys/ddb/db_sym.c Wed Jun 17 09:44:02 2015 (r284507) +++ head/sys/ddb/db_sym.c Wed Jun 17 10:20:59 2015 (r284508) @@ -160,7 +160,7 @@ db_var_curvnet(struct db_variable *vp, d return (0); default: - db_printf("db_var_curcpu: unknown operation\n"); + db_printf("db_var_curvnet: unknown operation\n"); return (0); } }