diff options
author | Tomas Mraz <tm@t8m.info> | 2008-05-19 15:37:35 +0000 |
---|---|---|
committer | Tomas Mraz <tm@t8m.info> | 2008-05-19 15:37:35 +0000 |
commit | a29fdfb518dd43b08e9c5b88ad271ab2cdeefe3f (patch) | |
tree | 31cd69b472242d51601115e96c4462506557c92a | |
parent | 595822c801fdd41483f2b55e0ae140ebf976bc52 (diff) | |
download | pam-a29fdfb518dd43b08e9c5b88ad271ab2cdeefe3f.tar.gz pam-a29fdfb518dd43b08e9c5b88ad271ab2cdeefe3f.tar.bz2 pam-a29fdfb518dd43b08e9c5b88ad271ab2cdeefe3f.zip |
Relevant BUGIDs:
Purpose of commit: bugfix
Commit summary:
---------------
2008-05-19 Tomas Mraz <t8m@centrum.cz>
* doc/man/pam_getenv.3.xml: Correct the pam_getenv documentation.
* doc/man/pam_prompt.3.xml: Add missing description.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | doc/man/pam_getenv.3.xml | 6 | ||||
-rw-r--r-- | doc/man/pam_prompt.3.xml | 6 |
3 files changed, 14 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2008-05-19 Tomas Mraz <t8m@centrum.cz> + + * doc/man/pam_getenv.3.xml: Correct the pam_getenv documentation. + + * doc/man/pam_prompt.3.xml: Add missing description. + 2008-05-14 Kjartan Maraas <kmaraas@gnome.org> * po/nb.po: Updated translation. diff --git a/doc/man/pam_getenv.3.xml b/doc/man/pam_getenv.3.xml index e78aa3c2..871e511d 100644 --- a/doc/man/pam_getenv.3.xml +++ b/doc/man/pam_getenv.3.xml @@ -32,9 +32,9 @@ <para> The <function>pam_getenv</function> function searches the PAM environment list as associated with the handle - <emphasis>pamh</emphasis> for a string that matches the string - pointed to by <emphasis>name</emphasis>. The return values are - of the form: "<emphasis>name=value</emphasis>". + <emphasis>pamh</emphasis> for an item that matches the string + pointed to by <emphasis>name</emphasis> and returns the value + of the environment variable. </para> </refsect1> diff --git a/doc/man/pam_prompt.3.xml b/doc/man/pam_prompt.3.xml index d0824131..b526457e 100644 --- a/doc/man/pam_prompt.3.xml +++ b/doc/man/pam_prompt.3.xml @@ -44,7 +44,11 @@ <title>DESCRIPTION</title> <para> The <function>pam_prompt</function> function constructs a message - from the specified format string and arguments and passes it to + from the specified format string and arguments and passes it to the + conversation function as set by the service. Upon successful return, + <emphasis>response</emphasis> is set to point to a string + returned from the conversation function. This string is allocated + on heap and should be freed. </para> </refsect1> |