From owner-svn-src-all@freebsd.org Thu Nov 9 13:38:25 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB2A6E507B8; Thu, 9 Nov 2017 13:38:25 +0000 (UTC) (envelope-from gavin@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 mx1.freebsd.org (Postfix) with ESMTPS id A40CA66632; Thu, 9 Nov 2017 13:38:25 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vA9DcOJw093325; Thu, 9 Nov 2017 13:38:24 GMT (envelope-from gavin@FreeBSD.org) Received: (from gavin@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vA9DcOgZ093324; Thu, 9 Nov 2017 13:38:24 GMT (envelope-from gavin@FreeBSD.org) Message-Id: <201711091338.vA9DcOgZ093324@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gavin set sender to gavin@FreeBSD.org using -f From: Gavin Atkinson Date: Thu, 9 Nov 2017 13:38:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r325594 - head/sys/ddb X-SVN-Group: head X-SVN-Commit-Author: gavin X-SVN-Commit-Paths: head/sys/ddb X-SVN-Commit-Revision: 325594 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.23 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: Thu, 09 Nov 2017 13:38:26 -0000 Author: gavin Date: Thu Nov 9 13:38:24 2017 New Revision: 325594 URL: https://svnweb.freebsd.org/changeset/base/325594 Log: Point people towards our https web site for documentation, http accesses are just redirected anyway. MFC after: 1 week Modified: head/sys/ddb/db_command.c Modified: head/sys/ddb/db_command.c ============================================================================== --- head/sys/ddb/db_command.c Thu Nov 9 13:38:17 2017 (r325593) +++ head/sys/ddb/db_command.c Thu Nov 9 13:38:24 2017 (r325594) @@ -398,7 +398,7 @@ db_command(struct command **last_cmdp, struct command_ case CMD_HELP: if (cmd_table == &db_cmd_table) { db_printf("This is ddb(4), the kernel debugger; " - "see http://man.freebsd.org/ddb/4 for help.\n"); + "see https://man.FreeBSD.org/ddb/4 for help.\n"); db_printf("Use \"bt\" for backtrace, \"dump\" for " "kernel core dump, \"reset\" to reboot.\n"); db_printf("Available commands:\n");