diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-06-06 11:45:44 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-06-06 11:45:44 +0000 |
commit | 2f42cd380c92907ed8d6a45fc6cada3df900b4c2 (patch) | |
tree | e668070cac327c9bc01512bd13138b5c21d6db71 /libpam/include/security/pam_appl.h | |
parent | 45a3264ab12e4f59aebe4f7329c518e036fe7e11 (diff) | |
download | pam-2f42cd380c92907ed8d6a45fc6cada3df900b4c2.tar.gz pam-2f42cd380c92907ed8d6a45fc6cada3df900b4c2.tar.bz2 pam-2f42cd380c92907ed8d6a45fc6cada3df900b4c2.zip |
Relevant BUGIDs:
Purpose of commit: cleanup
Commit summary:
---------------
2006-06-06 Thorsten Kukuk <kukuk@thkukuk.de>
* libpam/include/security/pam_malloc.h: Add missing license
informations.
* libpam/include/security/pam_ext.h: Add brackets for C++.
* libpam/include/security/pam_modutil.h: Likewise.
* libpam/include/security/pam_modules.h: Document where to
find the copyright/license informations.
* libpam/include/security/pam_appl.h: Move _pam_compat.h
include inside of brackets.
Diffstat (limited to 'libpam/include/security/pam_appl.h')
-rw-r--r-- | libpam/include/security/pam_appl.h | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/libpam/include/security/pam_appl.h b/libpam/include/security/pam_appl.h index 59e369b8..d4172c69 100644 --- a/libpam/include/security/pam_appl.h +++ b/libpam/include/security/pam_appl.h @@ -1,16 +1,11 @@ /* * <security/pam_appl.h> - * + * * This header file collects definitions for the PAM API --- that is, * public interface between the PAM library and an application program * that wishes to use it. * * Note, the copyright information is at end of file. - * - * Created: 15-Jan-96 by TYT - * Last modified: 1996/3/5 by AGM - * - * $Id$ */ #ifndef _SECURITY_PAM_APPL_H @@ -19,7 +14,7 @@ #ifdef __cplusplus extern "C" { #endif - + #include <security/_pam_types.h> /* Linux-PAM common defined types */ /* -------------- The Linux-PAM Framework layer API ------------- */ @@ -58,13 +53,14 @@ pam_close_session(pam_handle_t *pamh, int flags); extern int PAM_NONNULL((1)) pam_chauthtok(pam_handle_t *pamh, int flags); -#ifdef __cplusplus -} -#endif /* take care of any compatibility issues */ #include <security/_pam_compat.h> +#ifdef __cplusplus +} +#endif + /* * Copyright Theodore Ts'o, 1996. All rights reserved. * @@ -80,13 +76,13 @@ pam_chauthtok(pam_handle_t *pamh, int flags); * 3. The name of the author may not be used to endorse or promote * products derived from this software without specific prior * written permission. - * + * * ALTERNATIVELY, this product may be distributed under the terms of * the GNU Public License, in which case the provisions of the GPL are * required INSTEAD OF the above restrictions. (This clause is * necessary due to a potential bad interaction between the GPL and * the restrictions contained in a BSD-style copyright.) - * + * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |