Roll OpenPAM Dianthus.
git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@213 185d5e19-27fe-0310-9dcf-9bff6b9f3609
This commit is contained in:
parent
8b01e58103
commit
df6d850a38
3 changed files with 29 additions and 13 deletions
19
HISTORY
19
HISTORY
|
@ -1,3 +1,20 @@
|
||||||
|
OpenPAM Dianthus 2003-05-02
|
||||||
|
|
||||||
|
- BUGFIX: Initialize some potentially uninitialized variables.
|
||||||
|
|
||||||
|
- BUGFIX: Silence some warnings emitted by gcc -std=iso9899:1999.
|
||||||
|
|
||||||
|
- BUGFIX: In pam_getenv(), return a pointer to the stored variable
|
||||||
|
instead of a freshly allocated copy.
|
||||||
|
|
||||||
|
- ENHANCE: Detect recursion in openpam_borrow_cred()
|
||||||
|
|
||||||
|
- ENHANCE: Make borrowing one's own credentials a no-op.
|
||||||
|
|
||||||
|
- ENHANCE: Further improve debugging support.
|
||||||
|
|
||||||
|
- ENHANCE: Clean up some variable names.
|
||||||
|
============================================================================
|
||||||
OpenPAM Daffodil 2003-01-06
|
OpenPAM Daffodil 2003-01-06
|
||||||
|
|
||||||
- ENHANCE: Document dependency on <sys/types.h> (for size_t)
|
- ENHANCE: Document dependency on <sys/types.h> (for size_t)
|
||||||
|
@ -206,4 +223,4 @@ OpenPAM Calamite 2002-02-09
|
||||||
|
|
||||||
First (beta) release.
|
First (beta) release.
|
||||||
============================================================================
|
============================================================================
|
||||||
$P4: //depot/projects/openpam/HISTORY#17 $
|
$P4: //depot/projects/openpam/HISTORY#18 $
|
||||||
|
|
17
RELNOTES
17
RELNOTES
|
@ -1,16 +1,13 @@
|
||||||
|
|
||||||
Release notes for OpenPAM Daffodil
|
Release notes for OpenPAM Dianthus
|
||||||
==================================
|
==================================
|
||||||
|
|
||||||
This is a bugfix release. The previous release, Cyclamen, was rushed
|
This is a maintenance release incorporating a number of minor patches
|
||||||
out without sufficient testing, and contained a number of small but
|
accumulated since the previous release.
|
||||||
serious errors.
|
|
||||||
|
|
||||||
This release corresponds to the code used in FreeBSD-CURRENT as of the
|
This release corresponds to the code used in FreeBSD-CURRENT as of the
|
||||||
release date. It has also been successfully built on NetBSD 1.6, and
|
release date. It may or may not build on other platforms; previous
|
||||||
should build with minimal or no changes on OpenBSD. Work is underway
|
releases have been built on NetBSD and (with partial success) MacOS X.
|
||||||
to port OpenPAM to MacOS 10.2. It has not been tested on any other
|
|
||||||
operating system.
|
|
||||||
|
|
||||||
The library itself is complete. Documentation exists in the form of
|
The library itself is complete. Documentation exists in the form of
|
||||||
man pages for the library functions. These man pages are generated by
|
man pages for the library functions. These man pages are generated by
|
||||||
|
@ -27,4 +24,6 @@ NOTE: to the person who sent me MacOS patches in July 2002: I have
|
||||||
lost your name and email address. Please contact me so I can give you
|
lost your name and email address. Please contact me so I can give you
|
||||||
proper credit for your contribution.
|
proper credit for your contribution.
|
||||||
|
|
||||||
$P4: //depot/projects/openpam/RELNOTES#14 $
|
Please direct bug reports and inquiries to des@freebsd.org.
|
||||||
|
|
||||||
|
$P4: //depot/projects/openpam/RELNOTES#15 $
|
||||||
|
|
|
@ -31,14 +31,14 @@
|
||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $P4: //depot/projects/openpam/include/security/openpam_version.h#6 $
|
* $P4: //depot/projects/openpam/include/security/openpam_version.h#7 $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _OPENPAM_VERSION_H_INCLUDED
|
#ifndef _OPENPAM_VERSION_H_INCLUDED
|
||||||
#define _OPENPAM_VERSION_H_INCLUDED
|
#define _OPENPAM_VERSION_H_INCLUDED
|
||||||
|
|
||||||
#define _OPENPAM
|
#define _OPENPAM
|
||||||
#define _OPENPAM_VERSION 20020630
|
#define _OPENPAM_VERSION 20030502
|
||||||
#define _OPENPAM_RELEASE "Citronella"
|
#define _OPENPAM_RELEASE "Dianthus"
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue