From owner-svn-src-all@freebsd.org Fri Oct 18 22:03:37 2019 Return-Path: Delivered-To: svn-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E421515BCE4; Fri, 18 Oct 2019 22:03:37 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46w0RF5XGmz44RK; Fri, 18 Oct 2019 22:03:37 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A0781F91B; Fri, 18 Oct 2019 22:03:37 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9IM3bS0035766; Fri, 18 Oct 2019 22:03:37 GMT (envelope-from cem@FreeBSD.org) Received: (from cem@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9IM3bYD035764; Fri, 18 Oct 2019 22:03:37 GMT (envelope-from cem@FreeBSD.org) Message-Id: <201910182203.x9IM3bYD035764@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cem set sender to cem@FreeBSD.org using -f From: Conrad Meyer Date: Fri, 18 Oct 2019 22:03:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r353742 - in head/sys: conf net X-SVN-Group: head X-SVN-Commit-Author: cem X-SVN-Commit-Paths: in head/sys: conf net X-SVN-Commit-Revision: 353742 X-SVN-Commit-Repository: base 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.29 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: Fri, 18 Oct 2019 22:03:38 -0000 Author: cem Date: Fri Oct 18 22:03:36 2019 New Revision: 353742 URL: https://svnweb.freebsd.org/changeset/base/353742 Log: Fix debugnet(4) link/build fallout on some configurations Introduced in r353685 (sys/conf/files), r353694 (debugnet.c db_printf). Submitted by: kevans Reported by: cy X-MFC-With: r353685, r353694 Modified: head/sys/conf/files head/sys/net/debugnet.c Modified: head/sys/conf/files ============================================================================== --- head/sys/conf/files Fri Oct 18 21:53:27 2019 (r353741) +++ head/sys/conf/files Fri Oct 18 22:03:36 2019 (r353742) @@ -4298,7 +4298,7 @@ netinet/libalias/alias_mod.c optional libalias | netgr netinet/libalias/alias_proxy.c optional libalias inet | netgraph_nat inet netinet/libalias/alias_util.c optional libalias inet | netgraph_nat inet netinet/libalias/alias_sctp.c optional libalias inet | netgraph_nat inet -netinet/netdump/netdump_client.c optional inet netdump +netinet/netdump/netdump_client.c optional inet debugnet netdump netinet6/dest6.c optional inet6 netinet6/frag6.c optional inet6 netinet6/icmp6.c optional inet6 Modified: head/sys/net/debugnet.c ============================================================================== --- head/sys/net/debugnet.c Fri Oct 18 21:53:27 2019 (r353741) +++ head/sys/net/debugnet.c Fri Oct 18 22:03:36 2019 (r353742) @@ -659,7 +659,7 @@ debugnet_connect(const struct debugnet_conn_params *dc CURVNET_RESTORE(); if (dest_rt == NULL) { - db_printf("%s: Could not get route for that server.\n", + printf("%s: Could not get route for that server.\n", __func__); error = ENOENT; goto cleanup;