aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2025-04-28 08:43:49 +0000
committerLaurent Bercot <ska@appnovation.com>2025-04-28 08:43:49 +0000
commita5d1e7f6dd3f616feeee6c9b585f97da8ee3046b (patch)
tree6595d22c456d81a12afbb6867529bfb396460947 /doc
parent315aeacc8208cf6084c333a3a8fb04f8deb54cb8 (diff)
downloadnsss-a5d1e7f6dd3f616feeee6c9b585f97da8ee3046b.tar.gz
Latest batch of fixes
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/libnsss/index.html6
-rw-r--r--doc/nsswitch.html2
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/libnsss/index.html b/doc/libnsss/index.html
index bbe5029..0ec9698 100644
--- a/doc/libnsss/index.html
+++ b/doc/libnsss/index.html
@@ -93,8 +93,8 @@ implementation of the above standard functions, as
Application programs can use the internal API directly, or
the prefixed <tt>nsss_</tt> functions directly. Most programs,
however, will simply use the standard
-<a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/pwd.h.html">pwd.h</a>,
-<a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/grp.h.html">grp.h</a> or
+<a href="http://pubs.opengroup.org/onlinepubs/9799919799/basedefs/pwd.h.html">pwd.h</a>,
+<a href="http://pubs.opengroup.org/onlinepubs/9799919799/basedefs/grp.h.html">grp.h</a> or
<a href="http://man7.org/linux/man-pages/man3/getspnam.3.html">shadow.h</a>
interfaces. nsss provides a version of these standard headers: if an
application is built with these headers, then <tt>getpwnam()</tt>
@@ -165,7 +165,7 @@ sysdeps directory. </li>
<ul>
<li> nsss-all, nsss-switch and nsss-unix implement the
-<a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/getpwnam.html">POSIX
+<a href="http://pubs.opengroup.org/onlinepubs/9799919799/functions/getpwnam.html">POSIX
layer</a> of user database access, plus a few
<a href="http://man7.org/linux/man-pages/man3/getpwent_r.3.html">GNU extensions</a>. </li>
<li> The <a href="nsss-unix.html">nsss/nsss-unix.h</a> header
diff --git a/doc/nsswitch.html b/doc/nsswitch.html
index 3e40eca..c08ea74 100644
--- a/doc/nsswitch.html
+++ b/doc/nsswitch.html
@@ -38,7 +38,7 @@ In other words, it's crap. Here's why.
<em>nsswitch</em> works by reading a configuration file,
<tt>/etc/nsswitch.conf</tt>, and depending on what it reads in this
file, loading one or more shared libraries, via
-<a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/dlopen.html">dlopen()</a>,
+<a href="http://pubs.opengroup.org/onlinepubs/9799919799/functions/dlopen.html">dlopen()</a>,
into the application. These shared libraries, for instance
<tt>/lib/libnss_files-2.19.so</tt>, are provided by the NSS implementation
(glibc on Linux). This mechanism has drawbacks.