diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2018-08-02 22:50:17 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2018-08-02 22:50:17 +0000 |
commit | a90ce75a0c883c9ae2a2253c916f67255424f78d (patch) | |
tree | 7a6e5e2605e030feeb13445e85274cbce40b0a80 /doc | |
parent | 68594d15c56a21e3d4d8cd12fefbc5bbf0af002f (diff) | |
download | nsss-a90ce75a0c883c9ae2a2253c916f67255424f78d.tar.xz |
Fix doc typos
Diffstat (limited to 'doc')
-rw-r--r-- | doc/index.html | 8 | ||||
-rw-r--r-- | doc/libnsss/index.html | 4 | ||||
-rw-r--r-- | doc/overview.html | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/doc/index.html b/doc/index.html index d4b7861..5e54afb 100644 --- a/doc/index.html +++ b/doc/index.html @@ -81,11 +81,11 @@ functions. <li> A POSIX-compliant system with a standard C development environment </li> <li> GNU make, version 3.81 or later </li> <li> <a href="//skarnet.org/software/skalibs/">skalibs</a> version -2.6.5.0 or later. It's a build-time requirement. It's also a run-time +2.7.0.0 or later. It's a build-time requirement. It's also a run-time requirement if you link against the shared version of the skalibs library. </li> <li> <a href="//skarnet.org/software/s6/">s6</a> version -2.7.1.1 or later. It's a <em>run-time</em> requirement only, to run +2.7.2.0 or later. It's a <em>run-time</em> requirement only, to run the nsssd service (and can be done without if you have a suitable replacement for <a href="//skarnet.org/software/s6/s6-ipcserver">s6-ipcserver</a>). </li> </ul> @@ -141,8 +141,8 @@ backend to the name service. </p> <ul> - <li> The <a href="nsssd-unix"><tt>nsssd-unix</tt></a> program </li> - <li> The <a href="nsssd-nslcd"><tt>nsssd-nslcd</tt></a> program </li> + <li> The <a href="nsssd-unix.html"><tt>nsssd-unix</tt></a> program </li> + <li> The <a href="nsssd-nslcd.html"><tt>nsssd-nslcd</tt></a> program </li> </ul> <p> diff --git a/doc/libnsss/index.html b/doc/libnsss/index.html index ac99e54..fa47a7b 100644 --- a/doc/libnsss/index.html +++ b/doc/libnsss/index.html @@ -38,7 +38,7 @@ various server-side daemons such as functions that try connecting to a nsssd service first, and fall back to the <a href="nsss-unix.html">nsss-unix</a> implementation if the connection fails (no nsssd service is running). </li> -</p> +</ul> <p> Both <a href="nsss-unix.html">nsss-unix</a> and @@ -136,7 +136,7 @@ desired. </li> <ul> <li> Make sure the nsss library, as well as the skalibs library, are visible in your library search path. </li> - <li> Link against <tt>-lnsss</tt>, <tt>-lskarnet</tt>, </li> + <li> Link against <tt>-lnsss</tt>, <tt>-lskarnet</tt>, <tt>-lpthread</tt>, <tt>`cat $SYSDEPS/socket.lib`</tt> and <tt>`cat $SYSDEPS/tainnow.lib`</tt>, $SYSDEPS being your skalibs sysdeps directory. </li> diff --git a/doc/overview.html b/doc/overview.html index 047bea6..4eec53f 100644 --- a/doc/overview.html +++ b/doc/overview.html @@ -41,11 +41,11 @@ than the POSIX interface specifies. <li> <a href="libnsss/nsss-unix.html">nsss-unix</a>: a set of functions providing access to the standard <tt>/etc/passwd</tt>, <tt>/etc/group</tt> and <tt>/etc/shadow</tt> files. </li> - <li> <a href="libnsss/nsss-switch.html">nsss-switch: a set of + <li> <a href="libnsss/nsss-switch.html">nsss-switch</a>: a set of functions implementing the same functionality as <tt>nsss-unix</tt>, but instead of looking for information in the standard files, they connect to a <em>nsssd service</em> (see below) that performs the -requests for them. <li> +requests for them. </li> <li> three implementations of the the standard <tt>getpwnam()</tt> et al. functions: one using the <tt>nsss-unix</tt> functions, one using the <tt>nsss-switch</tt> functions, and the default one, called @@ -53,7 +53,7 @@ using the <tt>nsss-switch</tt> functions, and the default one, called and retrieve information from it, but falls back to the <tt>nsss-unix</tt> implementation if it fails (for instance, if no nsssd service is listening). </li> -<ul> +</ul> <p> Applications wishing to use nsss should be built against this client |