diff options
author | Steve Langasek <steve.langasek@ubuntu.com> | 2019-01-03 16:18:43 -0800 |
---|---|---|
committer | Steve Langasek <steve.langasek@ubuntu.com> | 2019-01-03 17:01:52 -0800 |
commit | 26ee21df2a5fe63f08cfae8c7d35c24bd3dd4f04 (patch) | |
tree | e6e25c1da5974a60660c8b2108d609fae00af126 /Linux-PAM/doc/man/pam_end.3 | |
parent | a3ee6f5fc767b1b01568bce6dd31fc9ca932a8d2 (diff) | |
parent | 9727ff2a3fa0e94a42b34a579027bacf4146d571 (diff) | |
download | pam-26ee21df2a5fe63f08cfae8c7d35c24bd3dd4f04.tar.gz pam-26ee21df2a5fe63f08cfae8c7d35c24bd3dd4f04.tar.bz2 pam-26ee21df2a5fe63f08cfae8c7d35c24bd3dd4f04.zip |
merge upstream version 0.99.10.0
Diffstat (limited to 'Linux-PAM/doc/man/pam_end.3')
-rw-r--r-- | Linux-PAM/doc/man/pam_end.3 | 44 |
1 files changed, 24 insertions, 20 deletions
diff --git a/Linux-PAM/doc/man/pam_end.3 b/Linux-PAM/doc/man/pam_end.3 index 3b28a265..85bd11ea 100644 --- a/Linux-PAM/doc/man/pam_end.3 +++ b/Linux-PAM/doc/man/pam_end.3 @@ -1,22 +1,22 @@ .\" Title: pam_end .\" Author: -.\" Generator: DocBook XSL Stylesheets v1.70.1 <http://docbook.sf.net/> -.\" Date: 06/27/2006 -.\" Manual: Linux\-PAM Manual -.\" Source: Linux\-PAM Manual +.\" Generator: DocBook XSL Stylesheets v1.73.1 <http://docbook.sf.net/> +.\" Date: 02/04/2008 +.\" Manual: Linux-PAM Manual +.\" Source: Linux-PAM Manual .\" -.TH "PAM_END" "3" "06/27/2006" "Linux\-PAM Manual" "Linux\-PAM Manual" +.TH "PAM_END" "3" "02/04/2008" "Linux-PAM Manual" "Linux-PAM Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .SH "NAME" -pam_end \- termination of PAM transaction +pam_end - termination of PAM transaction .SH "SYNOPSIS" .sp .ft B .nf -#include <security/pam_appl.h> +#include <security/pam_appl\.h> .fi .ft .HP 12 @@ -25,13 +25,13 @@ pam_end \- termination of PAM transaction .PP The \fBpam_end\fR -function terminates the PAM transaction and is the last function an application should call in the PAM context. Upon return the handle +function terminates the PAM transaction and is the last function an application should call in the PAM context\. Upon return the handle \fIpamh\fR -is no longer valid and all memory associated with it will be invalid. +is no longer valid and all memory associated with it will be invalid\. .PP The \fIpam_status\fR -argument should be set to the value returned to the application by the last PAM library call. +argument should be set to the value returned to the application by the last PAM library call\. .PP The value taken by \fIpam_status\fR @@ -40,26 +40,30 @@ is used as an argument to the module specific callback function, (See \fBpam_set_data\fR(3) and -\fBpam_get_data\fR(3)). In this way the module can be given notification of the pass/fail nature of the tear\-down process, and perform any last minute tasks that are appropriate to the module before it is unlinked. This argument can be logically OR'd with +\fBpam_get_data\fR(3))\. In this way the module can be given notification of the pass/fail nature of the tear\-down process, and perform any last minute tasks that are appropriate to the module before it is unlinked\. This argument can be logically OR\'d with \fIPAM_DATA_SILENT\fR -to indicate to indicate that the module should not treat the call too seriously. It is generally used to indicate that the current closing of the library is in a -\fBfork\fR(2)ed process, and that the parent will take care of cleaning up things that exist outside of the current process space (files etc.). +to indicate to indicate that the module should not treat the call too seriously\. It is generally used to indicate that the current closing of the library is in a +\fBfork\fR(2)ed process, and that the parent will take care of cleaning up things that exist outside of the current process space (files etc\.)\. .PP This function -\fIfree\fR's all memory for items associated with the +\fIfree\fR\'s all memory for items associated with the \fBpam_set_item\fR(3) and \fBpam_get_item\fR(3) -functions. Pointers associated with such objects are not valid anymore after +functions\. Pointers associated with such objects are not valid anymore after \fBpam_end\fR -was called. +was called\. .SH "RETURN VALUES" -.TP 3n +.PP PAM_SUCCESS -Transaction was successful terminated. -.TP 3n +.RS 4 +Transaction was successful terminated\. +.RE +.PP PAM_SYSTEM_ERR -System error, for example a NULL pointer was submitted as PAM handle or the function was called by a module. +.RS 4 +System error, for example a NULL pointer was submitted as PAM handle or the function was called by a module\. +.RE .SH "SEE ALSO" .PP |