git: b89da56dc8 - main - porters-handbook: Update the address of the manual pages

From: Danilo G. Baio <dbaio_at_FreeBSD.org>
Date: Sat, 28 Jan 2023 21:00:24 UTC
The branch main has been updated by dbaio:

URL: https://cgit.FreeBSD.org/doc/commit/?id=b89da56dc82144afd49e5ce3c8bdb93c5ea9cd33

commit b89da56dc82144afd49e5ce3c8bdb93c5ea9cd33
Author:     Danilo G. Baio <dbaio@FreeBSD.org>
AuthorDate: 2023-01-28 20:05:43 +0000
Commit:     Danilo G. Baio <dbaio@FreeBSD.org>
CommitDate: 2023-01-28 20:05:43 +0000

    porters-handbook: Update the address of the manual pages
---
 .../content/en/books/porters-handbook/porting-dads/_index.adoc          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/documentation/content/en/books/porters-handbook/porting-dads/_index.adoc b/documentation/content/en/books/porters-handbook/porting-dads/_index.adoc
index 91320fd80b..01573cd8ad 100644
--- a/documentation/content/en/books/porters-handbook/porting-dads/_index.adoc
+++ b/documentation/content/en/books/porters-handbook/porting-dads/_index.adoc
@@ -531,7 +531,7 @@ In particular, default socket buffer sizes are different (call man:setsockopt[2]
 
 If relying on non-standard behavior is required, encapsulate it properly into a generic API, do a check for the behavior in the configure stage, and stop if it is missing.
 
-Check the https://www.freebsd.org/cgi/man.cgi[man pages] to see if the function used is a POSIX interface (in the "STANDARDS" section of the man page).
+Check the https://man.freebsd.org/cgi/man.cgi[man pages] to see if the function used is a POSIX interface (in the "STANDARDS" section of the man page).
 
 Do not assume that [.filename]#/bin/sh# is bash.
 Ensure that a command line passed to man:system[3] will work with a POSIX compliant shell.