summaryrefslogtreecommitdiffstats
path: root/contrib/openpam/doc/man
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/openpam/doc/man')
-rw-r--r--contrib/openpam/doc/man/Makefile.am81
-rw-r--r--contrib/openpam/doc/man/Makefile.in348
-rw-r--r--contrib/openpam/doc/man/openpam.341
-rw-r--r--contrib/openpam/doc/man/openpam_borrow_cred.313
-rw-r--r--contrib/openpam/doc/man/openpam_free_data.313
-rw-r--r--contrib/openpam/doc/man/openpam_get_option.313
-rw-r--r--contrib/openpam/doc/man/openpam_log.313
-rw-r--r--contrib/openpam/doc/man/openpam_nullconv.313
-rw-r--r--contrib/openpam/doc/man/openpam_readline.313
-rw-r--r--contrib/openpam/doc/man/openpam_restore_cred.313
-rw-r--r--contrib/openpam/doc/man/openpam_set_option.313
-rw-r--r--contrib/openpam/doc/man/openpam_ttyconv.313
-rw-r--r--contrib/openpam/doc/man/pam.361
-rw-r--r--contrib/openpam/doc/man/pam.man18
-rw-r--r--contrib/openpam/doc/man/pam_acct_mgmt.313
-rw-r--r--contrib/openpam/doc/man/pam_authenticate.313
-rw-r--r--contrib/openpam/doc/man/pam_chauthtok.313
-rw-r--r--contrib/openpam/doc/man/pam_close_session.313
-rw-r--r--contrib/openpam/doc/man/pam_end.313
-rw-r--r--contrib/openpam/doc/man/pam_error.313
-rw-r--r--contrib/openpam/doc/man/pam_get_authtok.313
-rw-r--r--contrib/openpam/doc/man/pam_get_data.313
-rw-r--r--contrib/openpam/doc/man/pam_get_item.313
-rw-r--r--contrib/openpam/doc/man/pam_get_user.313
-rw-r--r--contrib/openpam/doc/man/pam_getenv.313
-rw-r--r--contrib/openpam/doc/man/pam_getenvlist.313
-rw-r--r--contrib/openpam/doc/man/pam_info.313
-rw-r--r--contrib/openpam/doc/man/pam_open_session.313
-rw-r--r--contrib/openpam/doc/man/pam_prompt.313
-rw-r--r--contrib/openpam/doc/man/pam_putenv.313
-rw-r--r--contrib/openpam/doc/man/pam_set_data.313
-rw-r--r--contrib/openpam/doc/man/pam_set_item.313
-rw-r--r--contrib/openpam/doc/man/pam_setcred.313
-rw-r--r--contrib/openpam/doc/man/pam_setenv.313
-rw-r--r--contrib/openpam/doc/man/pam_sm_acct_mgmt.313
-rw-r--r--contrib/openpam/doc/man/pam_sm_authenticate.313
-rw-r--r--contrib/openpam/doc/man/pam_sm_chauthtok.313
-rw-r--r--contrib/openpam/doc/man/pam_sm_close_session.313
-rw-r--r--contrib/openpam/doc/man/pam_sm_open_session.313
-rw-r--r--contrib/openpam/doc/man/pam_sm_setcred.313
-rw-r--r--contrib/openpam/doc/man/pam_start.313
-rw-r--r--contrib/openpam/doc/man/pam_strerror.313
-rw-r--r--contrib/openpam/doc/man/pam_verror.313
-rw-r--r--contrib/openpam/doc/man/pam_vinfo.313
-rw-r--r--contrib/openpam/doc/man/pam_vprompt.313
45 files changed, 770 insertions, 299 deletions
diff --git a/contrib/openpam/doc/man/Makefile.am b/contrib/openpam/doc/man/Makefile.am
new file mode 100644
index 0000000..f50385b
--- /dev/null
+++ b/contrib/openpam/doc/man/Makefile.am
@@ -0,0 +1,81 @@
+NULL =
+
+# Standard PAM API
+PMAN = \
+ pam_acct_mgmt.3 \
+ pam_authenticate.3 \
+ pam_chauthtok.3 \
+ pam_close_session.3 \
+ pam_end.3 \
+ pam_get_data.3 \
+ pam_get_item.3 \
+ pam_get_user.3 \
+ pam_getenv.3 \
+ pam_getenvlist.3 \
+ pam_open_session.3 \
+ pam_putenv.3 \
+ pam_set_data.3 \
+ pam_set_item.3 \
+ pam_setcred.3 \
+ pam_start.3 \
+ pam_strerror.3 \
+ $(NULL)
+
+# Standard module API
+MMAN = \
+ pam_sm_acct_mgmt.3 \
+ pam_sm_authenticate.3 \
+ pam_sm_chauthtok.3 \
+ pam_sm_close_session.3 \
+ pam_sm_open_session.3 \
+ pam_sm_setcred.3 \
+ $(NULL)
+
+# OpenPAM extensions
+OMAN = \
+ openpam_borrow_cred.3 \
+ openpam_free_data.3 \
+ openpam_get_option.3 \
+ openpam_log.3 \
+ openpam_nullconv.3 \
+ openpam_readline.3 \
+ openpam_restore_cred.3 \
+ openpam_set_option.3 \
+ openpam_ttyconv.3 \
+ pam_error.3 \
+ pam_get_authtok.3 \
+ pam_info.3 \
+ pam_prompt.3 \
+ pam_setenv.3 \
+ pam_verror.3 \
+ pam_vinfo.3 \
+ pam_vprompt.3 \
+ $(NULL)
+
+ALLCMAN = $(PMAN) $(MMAN) $(OMAN)
+LINKS= $(ALLCMAN:.3=.c)
+
+man3_MANS = $(ALLCMAN) openpam.3 pam.3 pam_conv.3
+
+CLEANFILES = $(ALLCMAN) $(LINKS) openpam.3 pam.3 symlink-stamp
+
+GENDOC = $(top_srcdir)/misc/gendoc.pl
+
+SUFFIXES = .3
+
+$(LINKS): symlink-stamp
+
+symlink-stamp: Makefile
+ for lnk in $(LINKS); do \
+ ln -sf $(top_srcdir)/lib/$$lnk ./; \
+ done && \
+ touch symlink-stamp
+
+.c.3: symlink-stamp
+ perl -w $(GENDOC) $(top_srcdir)/lib/$*.c
+
+openpam.3: $(OMAN) $(GENDOC) openpam.man
+ perl -w $(GENDOC) -o $(OMAN) <$(srcdir)/openpam.man
+
+pam.3: $(PMAN) $(GENDOC) pam.man
+ perl -w $(GENDOC) -p $(PMAN) <$(srcdir)/pam.man
diff --git a/contrib/openpam/doc/man/Makefile.in b/contrib/openpam/doc/man/Makefile.in
new file mode 100644
index 0000000..caa72f8
--- /dev/null
+++ b/contrib/openpam/doc/man/Makefile.in
@@ -0,0 +1,348 @@
+# Makefile.in generated automatically by automake 1.5 from Makefile.am.
+
+# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
+SHELL = @SHELL@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+includedir = @includedir@
+oldincludedir = /usr/include
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+top_builddir = ../..
+
+ACLOCAL = @ACLOCAL@
+AUTOCONF = @AUTOCONF@
+AUTOMAKE = @AUTOMAKE@
+AUTOHEADER = @AUTOHEADER@
+
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = @program_transform_name@
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+build_alias = @build_alias@
+build_triplet = @build@
+host_alias = @host_alias@
+host_triplet = @host@
+target_alias = @target_alias@
+target_triplet = @target@
+AMTAR = @AMTAR@
+AS = @AS@
+AWK = @AWK@
+CC = @CC@
+CFLAGS = @CFLAGS@
+CPPFLAGS = @CPPFLAGS@
+CRYPT_LIBS = @CRYPT_LIBS@
+DEPDIR = @DEPDIR@
+DLLTOOL = @DLLTOOL@
+DL_LIBS = @DL_LIBS@
+EXEEXT = @EXEEXT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+LIBTOOL = @LIBTOOL@
+LIB_MAJ = @LIB_MAJ@
+LN_S = @LN_S@
+OBJDUMP = @OBJDUMP@
+OBJEXT = @OBJEXT@
+OPENPAM_MODULES_DIR = @OPENPAM_MODULES_DIR@
+PACKAGE = @PACKAGE@
+RANLIB = @RANLIB@
+VERSION = @VERSION@
+am__include = @am__include@
+am__quote = @am__quote@
+install_sh = @install_sh@
+
+NULL =
+
+# Standard PAM API
+PMAN = \
+ pam_acct_mgmt.3 \
+ pam_authenticate.3 \
+ pam_chauthtok.3 \
+ pam_close_session.3 \
+ pam_end.3 \
+ pam_get_data.3 \
+ pam_get_item.3 \
+ pam_get_user.3 \
+ pam_getenv.3 \
+ pam_getenvlist.3 \
+ pam_open_session.3 \
+ pam_putenv.3 \
+ pam_set_data.3 \
+ pam_set_item.3 \
+ pam_setcred.3 \
+ pam_start.3 \
+ pam_strerror.3 \
+ $(NULL)
+
+
+# Standard module API
+MMAN = \
+ pam_sm_acct_mgmt.3 \
+ pam_sm_authenticate.3 \
+ pam_sm_chauthtok.3 \
+ pam_sm_close_session.3 \
+ pam_sm_open_session.3 \
+ pam_sm_setcred.3 \
+ $(NULL)
+
+
+# OpenPAM extensions
+OMAN = \
+ openpam_borrow_cred.3 \
+ openpam_free_data.3 \
+ openpam_get_option.3 \
+ openpam_log.3 \
+ openpam_nullconv.3 \
+ openpam_readline.3 \
+ openpam_restore_cred.3 \
+ openpam_set_option.3 \
+ openpam_ttyconv.3 \
+ pam_error.3 \
+ pam_get_authtok.3 \
+ pam_info.3 \
+ pam_prompt.3 \
+ pam_setenv.3 \
+ pam_verror.3 \
+ pam_vinfo.3 \
+ pam_vprompt.3 \
+ $(NULL)
+
+
+ALLCMAN = $(PMAN) $(MMAN) $(OMAN)
+LINKS = $(ALLCMAN:.3=.c)
+
+man3_MANS = $(ALLCMAN) openpam.3 pam.3 pam_conv.3
+
+CLEANFILES = $(ALLCMAN) $(LINKS) openpam.3 pam.3 symlink-stamp
+
+GENDOC = $(top_srcdir)/misc/gendoc.pl
+
+SUFFIXES = .3
+subdir = doc/man
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+CONFIG_HEADER = $(top_builddir)/config.h
+CONFIG_CLEAN_FILES =
+DIST_SOURCES =
+
+NROFF = nroff
+MANS = $(man3_MANS)
+DIST_COMMON = Makefile.am Makefile.in
+all: all-am
+
+.SUFFIXES:
+.SUFFIXES: .3 .c
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+
+distclean-libtool:
+ -rm -f libtool
+$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
+ cd $(top_srcdir) && \
+ $(AUTOMAKE) --foreign doc/man/Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ cd $(top_builddir) && \
+ CONFIG_HEADERS= CONFIG_LINKS= \
+ CONFIG_FILES=$(subdir)/$@ $(SHELL) ./config.status
+uninstall-info-am:
+
+man3dir = $(mandir)/man3
+install-man3: $(man3_MANS) $(man_MANS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(man3dir)
+ @list='$(man3_MANS) $(dist_man3_MANS) $(nodist_man3_MANS)'; \
+ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
+ for i in $$l2; do \
+ case "$$i" in \
+ *.3*) list="$$list $$i" ;; \
+ esac; \
+ done; \
+ for i in $$list; do \
+ if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
+ else file=$$i; fi; \
+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ inst=`echo $$inst | sed -e 's/^.*\///'`; \
+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+ echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man3dir)/$$inst"; \
+ $(INSTALL_DATA) $$file $(DESTDIR)$(man3dir)/$$inst; \
+ done
+uninstall-man3:
+ @$(NORMAL_UNINSTALL)
+ @list='$(man3_MANS) $(dist_man3_MANS) $(nodist_man3_MANS)'; \
+ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
+ for i in $$l2; do \
+ case "$$i" in \
+ *.3*) list="$$list $$i" ;; \
+ esac; \
+ done; \
+ for i in $$list; do \
+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ inst=`echo $$inst | sed -e 's/^.*\///'`; \
+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+ echo " rm -f $(DESTDIR)$(man3dir)/$$inst"; \
+ rm -f $(DESTDIR)$(man3dir)/$$inst; \
+ done
+tags: TAGS
+TAGS:
+
+
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+
+top_distdir = ../..
+distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
+
+distdir: $(DISTFILES)
+ @for file in $(DISTFILES); do \
+ if test -f $$file; then d=.; else d=$(srcdir); fi; \
+ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
+ if test "$$dir" != "$$file" && test "$$dir" != "."; then \
+ $(mkinstalldirs) "$(distdir)/$$dir"; \
+ fi; \
+ if test -d $$d/$$file; then \
+ cp -pR $$d/$$file $(distdir) \
+ || exit 1; \
+ else \
+ test -f $(distdir)/$$file \
+ || cp -p $$d/$$file $(distdir)/$$file \
+ || exit 1; \
+ fi; \
+ done
+check-am: all-am
+check: check-am
+all-am: Makefile $(MANS)
+
+installdirs:
+ $(mkinstalldirs) $(DESTDIR)$(man3dir)
+
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ `test -z '$(STRIP)' || \
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
+mostlyclean-generic:
+
+clean-generic:
+ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+
+distclean-generic:
+ -rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]*
+
+maintainer-clean-generic:
+ @echo "This command is intended for maintainers to use"
+ @echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-generic clean-libtool mostlyclean-am
+
+distclean: distclean-am
+
+distclean-am: clean-am distclean-generic distclean-libtool
+
+dvi: dvi-am
+
+dvi-am:
+
+info: info-am
+
+info-am:
+
+install-data-am: install-man
+
+install-exec-am:
+
+install-info: install-info-am
+
+install-man: install-man3
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+
+maintainer-clean-am: distclean-am maintainer-clean-generic
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
+
+uninstall-am: uninstall-info-am uninstall-man
+
+uninstall-man: uninstall-man3
+
+.PHONY: all all-am check check-am clean clean-generic clean-libtool \
+ distclean distclean-generic distclean-libtool distdir dvi \
+ dvi-am info info-am install install-am install-data \
+ install-data-am install-exec install-exec-am install-info \
+ install-info-am install-man install-man3 install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
+ mostlyclean-libtool uninstall uninstall-am uninstall-info-am \
+ uninstall-man uninstall-man3
+
+
+$(LINKS): symlink-stamp
+
+symlink-stamp: Makefile
+ for lnk in $(LINKS); do \
+ ln -sf $(top_srcdir)/lib/$$lnk ./; \
+ done && \
+ touch symlink-stamp
+
+.c.3: symlink-stamp
+ perl -w $(GENDOC) $(top_srcdir)/lib/$*.c
+
+openpam.3: $(OMAN) $(GENDOC) openpam.man
+ perl -w $(GENDOC) -o $(OMAN) <$(srcdir)/openpam.man
+
+pam.3: $(PMAN) $(GENDOC) pam.man
+ perl -w $(GENDOC) -p $(PMAN) <$(srcdir)/pam.man
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/contrib/openpam/doc/man/openpam.3 b/contrib/openpam/doc/man/openpam.3
index 8bb9a47..85e48eb 100644
--- a/contrib/openpam/doc/man/openpam.3
+++ b/contrib/openpam/doc/man/openpam.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt OPENPAM 3
.Os
.Sh NAME
@@ -59,39 +59,39 @@
.Lb libpam
.Sh SYNOPSIS
.In security/openpam.h
-.Ft int
+.Ft "int"
.Fn openpam_borrow_cred "pam_handle_t *pamh" "const struct passwd *pwd"
-.Ft void
+.Ft "void"
.Fn openpam_free_data "pam_handle_t *pamh" "void *data" "int status"
-.Ft const char *
+.Ft "const char *"
.Fn openpam_get_option "pam_handle_t *pamh" "const char *option"
-.Ft void
+.Ft "void"
.Fn openpam_log "int level" "const char *fmt" "..."
-.Ft int
+.Ft "int"
.Fn openpam_nullconv "int n" "const struct pam_message **msg" "struct pam_response **resp" "void *data"
-.Ft char *
+.Ft "char *"
.Fn openpam_readline "FILE *f" "int *lineno" "size_t *lenp"
-.Ft int
+.Ft "int"
.Fn openpam_restore_cred "pam_handle_t *pamh"
-.Ft int
+.Ft "int"
.Fn openpam_set_option "pam_handle_t *pamh" "const char *option" "const char *value"
-.Ft int
+.Ft "int"
.Fn openpam_ttyconv "int n" "const struct pam_message **msg" "struct pam_response **resp" "void *data"
-.Ft int
+.Ft "int"
.Fn pam_error "pam_handle_t *pamh" "const char *fmt" "..."
-.Ft int
+.Ft "int"
.Fn pam_get_authtok "pam_handle_t *pamh" "int item" "const char **authtok" "const char *prompt"
-.Ft int
+.Ft "int"
.Fn pam_info "pam_handle_t *pamh" "const char *fmt" "..."
-.Ft int
+.Ft "int"
.Fn pam_prompt "pam_handle_t *pamh" "int style" "char **resp" "const char *fmt" "..."
-.Ft int
+.Ft "int"
.Fn pam_setenv "pam_handle_t *pamh" "const char *name" "const char *value" "int overwrite"
-.Ft int
+.Ft "int"
.Fn pam_verror "pam_handle_t *pamh" "const char *fmt" "va_list ap"
-.Ft int
+.Ft "int"
.Fn pam_vinfo "pam_handle_t *pamh" "const char *fmt" "va_list ap"
-.Ft int
+.Ft "int"
.Fn pam_vprompt "pam_handle_t *pamh" "int style" "char **resp" "const char *fmt" "va_list ap"
.\"
.\" $P4: //depot/projects/openpam/doc/man/openpam.man#1 $
@@ -130,8 +130,9 @@ standardization.
.Re
.Sh AUTHORS
The OpenPAM library and this manual page were developed for the
-FreeBSD Project by ThinkSec AS and Network Associates Laboratories,
-the Security Research Division of Network Associates, Inc. under
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/openpam_borrow_cred.3 b/contrib/openpam/doc/man/openpam_borrow_cred.3
index 338c383..4985e59 100644
--- a/contrib/openpam/doc/man/openpam_borrow_cred.3
+++ b/contrib/openpam/doc/man/openpam_borrow_cred.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt OPENPAM_BORROW_CRED 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/openpam.h
-.Ft int
+.Ft "int"
.Fn openpam_borrow_cred "pam_handle_t *pamh" "const struct passwd *pwd"
.Sh DESCRIPTION
The
@@ -84,9 +84,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/openpam_free_data.3 b/contrib/openpam/doc/man/openpam_free_data.3
index 196247d..84f58e2 100644
--- a/contrib/openpam/doc/man/openpam_free_data.3
+++ b/contrib/openpam/doc/man/openpam_free_data.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt OPENPAM_FREE_DATA 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/openpam.h
-.Ft void
+.Ft "void"
.Fn openpam_free_data "pam_handle_t *pamh" "void *data" "int status"
.Sh DESCRIPTION
The
@@ -67,9 +67,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/openpam_get_option.3 b/contrib/openpam/doc/man/openpam_get_option.3
index 1e0afdc..c0fbb49 100644
--- a/contrib/openpam/doc/man/openpam_get_option.3
+++ b/contrib/openpam/doc/man/openpam_get_option.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt OPENPAM_GET_OPTION 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/openpam.h
-.Ft const char *
+.Ft "const char *"
.Fn openpam_get_option "pam_handle_t *pamh" "const char *option"
.Sh DESCRIPTION
The
@@ -71,9 +71,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/openpam_log.3 b/contrib/openpam/doc/man/openpam_log.3
index f6e2c59..b9e0eb7 100644
--- a/contrib/openpam/doc/man/openpam_log.3
+++ b/contrib/openpam/doc/man/openpam_log.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt OPENPAM_LOG 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/openpam.h
-.Ft void
+.Ft "void"
.Fn openpam_log "int level" "const char *fmt" "..."
.Sh DESCRIPTION
The
@@ -105,9 +105,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/openpam_nullconv.3 b/contrib/openpam/doc/man/openpam_nullconv.3
index 21b967f..fbca890 100644
--- a/contrib/openpam/doc/man/openpam_nullconv.3
+++ b/contrib/openpam/doc/man/openpam_nullconv.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt OPENPAM_NULLCONV 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/openpam.h
-.Ft int
+.Ft "int"
.Fn openpam_nullconv "int n" "const struct pam_message **msg" "struct pam_response **resp" "void *data"
.Sh DESCRIPTION
The
@@ -92,9 +92,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/openpam_readline.3 b/contrib/openpam/doc/man/openpam_readline.3
index d57d8a1..1c9596c 100644
--- a/contrib/openpam/doc/man/openpam_readline.3
+++ b/contrib/openpam/doc/man/openpam_readline.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt OPENPAM_READLINE 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/openpam.h
-.Ft char *
+.Ft "char *"
.Fn openpam_readline "FILE *f" "int *lineno" "size_t *lenp"
.Sh DESCRIPTION
The
@@ -99,9 +99,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/openpam_restore_cred.3 b/contrib/openpam/doc/man/openpam_restore_cred.3
index 50a0a44..47eb575 100644
--- a/contrib/openpam/doc/man/openpam_restore_cred.3
+++ b/contrib/openpam/doc/man/openpam_restore_cred.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt OPENPAM_RESTORE_CRED 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/openpam.h
-.Ft int
+.Ft "int"
.Fn openpam_restore_cred "pam_handle_t *pamh"
.Sh DESCRIPTION
The
@@ -77,9 +77,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/openpam_set_option.3 b/contrib/openpam/doc/man/openpam_set_option.3
index da2914b..15b8089 100644
--- a/contrib/openpam/doc/man/openpam_set_option.3
+++ b/contrib/openpam/doc/man/openpam_set_option.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt OPENPAM_SET_OPTION 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/openpam.h
-.Ft int
+.Ft "int"
.Fn openpam_set_option "pam_handle_t *pamh" "const char *option" "const char *value"
.Sh DESCRIPTION
The
@@ -74,9 +74,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/openpam_ttyconv.3 b/contrib/openpam/doc/man/openpam_ttyconv.3
index aed6c93..e47b2c4 100644
--- a/contrib/openpam/doc/man/openpam_ttyconv.3
+++ b/contrib/openpam/doc/man/openpam_ttyconv.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt OPENPAM_TTYCONV 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/openpam.h
-.Ft int
+.Ft "int"
.Fn openpam_ttyconv "int n" "const struct pam_message **msg" "struct pam_response **resp" "void *data"
.Sh DESCRIPTION
The
@@ -86,9 +86,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam.3 b/contrib/openpam/doc/man/pam.3
index 51c7e2e..0342120 100644
--- a/contrib/openpam/doc/man/pam.3
+++ b/contrib/openpam/doc/man/pam.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM 3
.Os
.Sh NAME
@@ -59,42 +59,42 @@
.Lb libpam
.Sh SYNOPSIS
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_acct_mgmt "pam_handle_t *pamh" "int flags"
-.Ft int
+.Ft "int"
.Fn pam_authenticate "pam_handle_t *pamh" "int flags"
-.Ft int
+.Ft "int"
.Fn pam_chauthtok "pam_handle_t *pamh" "int flags"
-.Ft int
+.Ft "int"
.Fn pam_close_session "pam_handle_t *pamh" "int flags"
-.Ft int
+.Ft "int"
.Fn pam_end "pam_handle_t *pamh" "int status"
-.Ft int
+.Ft "int"
.Fn pam_get_data "pam_handle_t *pamh" "const char *module_data_name" "const void **data"
-.Ft int
+.Ft "int"
.Fn pam_get_item "pam_handle_t *pamh" "int item_type" "const void **item"
-.Ft int
+.Ft "int"
.Fn pam_get_user "pam_handle_t *pamh" "const char **user" "const char *prompt"
-.Ft const char *
+.Ft "const char *"
.Fn pam_getenv "pam_handle_t *pamh" "const char *name"
-.Ft char **
+.Ft "char **"
.Fn pam_getenvlist "pam_handle_t *pamh"
-.Ft int
+.Ft "int"
.Fn pam_open_session "pam_handle_t *pamh" "int flags"
-.Ft int
+.Ft "int"
.Fn pam_putenv "pam_handle_t *pamh" "const char *namevalue"
-.Ft int
+.Ft "int"
.Fn pam_set_data "pam_handle_t *pamh" "const char *module_data_name" "void *data" "void (*cleanup)(pam_handle_t *pamh, void *data, int pam_end_status)"
-.Ft int
+.Ft "int"
.Fn pam_set_item "pam_handle_t *pamh" "int item_type" "const void *item"
-.Ft int
+.Ft "int"
.Fn pam_setcred "pam_handle_t *pamh" "int flags"
-.Ft int
+.Ft "int"
.Fn pam_start "const char *service" "const char *user" "const struct pam_conv *pam_conv" "pam_handle_t **pamh"
-.Ft const char *
+.Ft "const char *"
.Fn pam_strerror "pam_handle_t *pamh" "int error_number"
.\"
-.\" $P4: //depot/projects/openpam/doc/man/pam.man#1 $
+.\" $P4: //depot/projects/openpam/doc/man/pam.man#2 $
.\"
.Sh DESCRIPTION
The Pluggable Authentication Modules (PAM) library abstracts a number
@@ -108,7 +108,7 @@ service name, which is often (but not necessarily) the program name.
.Pp
The user requesting authentication is called the applicant, while the
user (usually, root) charged with verifying his identity and granting
-him the requested credentials is called the arbitrator.
+him the requested credentials is called the arbitrator.
.Pp
The sequence of operations the server goes through to authenticate a
user and perform whatever task he requested is a PAM transaction; the
@@ -127,7 +127,7 @@ devices.
See
.Xr pam_conv 3
for details.
-.Ss Initialization And Cleanup
+.Ss Initialization and Cleanup
The
.Fn pam_start
function initializes the PAM library and returns a handle which must
@@ -139,7 +139,7 @@ transactions in parallel.
The
.Fn pam_end
function releases all resources associated with the specified context,
-and can be called at any time to terminate a PAM transaction.
+and can be called at any time to terminate a PAM transaction.
.Ss Storage
The
.Fn pam_set_item
@@ -149,12 +149,12 @@ functions set and retrieve a number of predefined items, including the
service name, the names of the requesting and target users, the
conversation function, and prompts.
.Pp
-The
+The
.Fn pam_set_data
and
.Fn pam_get_data
-manage named chunks of free-form data, generally used by modules to
-store state from one invocation to another.
+functions manage named chunks of free-form data, generally used by
+modules to store state from one invocation to another.
.Ss Authentication
There are two authentication primitives:
.Fn pam_authenticate
@@ -179,7 +179,7 @@ The
function allows the server to change the user's password, either at
the user's request or because the password has expired.
.Ss Miscellaneous
-The
+The
.Fn pam_putenv ,
.Fn pam_getenv
and
@@ -189,7 +189,7 @@ variables they want the server to export during the session.
.Pp
The
.Fn pam_strerror
-function returns a pointer to a string describing a the specified PAM
+function returns a pointer to a string describing the specified PAM
error code.
.Sh RETURN VALUES
The following return codes are defined by
@@ -257,7 +257,7 @@ Try again.
Unknown user.
.El
.Sh SEE ALSO
-.Xr openpam 3
+.Xr openpam 3 ,
.Xr pam_acct_mgmt 3 ,
.Xr pam_authenticate 3 ,
.Xr pam_chauthtok 3 ,
@@ -283,8 +283,9 @@ Unknown user.
.Re
.Sh AUTHORS
The OpenPAM library and this manual page were developed for the
-FreeBSD Project by ThinkSec AS and Network Associates Laboratories,
-the Security Research Division of Network Associates, Inc. under
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam.man b/contrib/openpam/doc/man/pam.man
index b14a7b8..83ee440 100644
--- a/contrib/openpam/doc/man/pam.man
+++ b/contrib/openpam/doc/man/pam.man
@@ -1,5 +1,5 @@
.\"
-.\" $P4: //depot/projects/openpam/doc/man/pam.man#1 $
+.\" $P4: //depot/projects/openpam/doc/man/pam.man#2 $
.\"
.Sh DESCRIPTION
The Pluggable Authentication Modules (PAM) library abstracts a number
@@ -13,7 +13,7 @@ service name, which is often (but not necessarily) the program name.
.Pp
The user requesting authentication is called the applicant, while the
user (usually, root) charged with verifying his identity and granting
-him the requested credentials is called the arbitrator.
+him the requested credentials is called the arbitrator.
.Pp
The sequence of operations the server goes through to authenticate a
user and perform whatever task he requested is a PAM transaction; the
@@ -32,7 +32,7 @@ devices.
See
.Xr pam_conv 3
for details.
-.Ss Initialization And Cleanup
+.Ss Initialization and Cleanup
The
.Fn pam_start
function initializes the PAM library and returns a handle which must
@@ -44,7 +44,7 @@ transactions in parallel.
The
.Fn pam_end
function releases all resources associated with the specified context,
-and can be called at any time to terminate a PAM transaction.
+and can be called at any time to terminate a PAM transaction.
.Ss Storage
The
.Fn pam_set_item
@@ -54,12 +54,12 @@ functions set and retrieve a number of predefined items, including the
service name, the names of the requesting and target users, the
conversation function, and prompts.
.Pp
-The
+The
.Fn pam_set_data
and
.Fn pam_get_data
-manage named chunks of free-form data, generally used by modules to
-store state from one invocation to another.
+functions manage named chunks of free-form data, generally used by
+modules to store state from one invocation to another.
.Ss Authentication
There are two authentication primitives:
.Fn pam_authenticate
@@ -84,7 +84,7 @@ The
function allows the server to change the user's password, either at
the user's request or because the password has expired.
.Ss Miscellaneous
-The
+The
.Fn pam_putenv ,
.Fn pam_getenv
and
@@ -94,5 +94,5 @@ variables they want the server to export during the session.
.Pp
The
.Fn pam_strerror
-function returns a pointer to a string describing a the specified PAM
+function returns a pointer to a string describing the specified PAM
error code.
diff --git a/contrib/openpam/doc/man/pam_acct_mgmt.3 b/contrib/openpam/doc/man/pam_acct_mgmt.3
index b82894f..bef0792 100644
--- a/contrib/openpam/doc/man/pam_acct_mgmt.3
+++ b/contrib/openpam/doc/man/pam_acct_mgmt.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_ACCT_MGMT 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_acct_mgmt "pam_handle_t *pamh" "int flags"
.Sh DESCRIPTION
The
@@ -104,9 +104,10 @@ Unknown user.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_authenticate.3 b/contrib/openpam/doc/man/pam_authenticate.3
index 89768af..ecb407b 100644
--- a/contrib/openpam/doc/man/pam_authenticate.3
+++ b/contrib/openpam/doc/man/pam_authenticate.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_AUTHENTICATE 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_authenticate "pam_handle_t *pamh" "int flags"
.Sh DESCRIPTION
The
@@ -118,9 +118,10 @@ Unknown user.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_chauthtok.3 b/contrib/openpam/doc/man/pam_chauthtok.3
index 0856fa0..873ed51 100644
--- a/contrib/openpam/doc/man/pam_chauthtok.3
+++ b/contrib/openpam/doc/man/pam_chauthtok.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_CHAUTHTOK 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_chauthtok "pam_handle_t *pamh" "int flags"
.Sh DESCRIPTION
The
@@ -110,9 +110,10 @@ Try again.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_close_session.3 b/contrib/openpam/doc/man/pam_close_session.3
index 94e0720..4bc327f 100644
--- a/contrib/openpam/doc/man/pam_close_session.3
+++ b/contrib/openpam/doc/man/pam_close_session.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_CLOSE_SESSION 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_close_session "pam_handle_t *pamh" "int flags"
.Sh DESCRIPTION
The
@@ -100,9 +100,10 @@ System error.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_end.3 b/contrib/openpam/doc/man/pam_end.3
index d4bebc8..cc9226c 100644
--- a/contrib/openpam/doc/man/pam_end.3
+++ b/contrib/openpam/doc/man/pam_end.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_END 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_end "pam_handle_t *pamh" "int status"
.Sh DESCRIPTION
The
@@ -77,9 +77,10 @@ System error.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_error.3 b/contrib/openpam/doc/man/pam_error.3
index 583cd7a..20148a9 100644
--- a/contrib/openpam/doc/man/pam_error.3
+++ b/contrib/openpam/doc/man/pam_error.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_ERROR 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_error "pam_handle_t *pamh" "const char *fmt" "..."
.Sh DESCRIPTION
The
@@ -77,9 +77,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_get_authtok.3 b/contrib/openpam/doc/man/pam_get_authtok.3
index 515b6d0..5cc4b06 100644
--- a/contrib/openpam/doc/man/pam_get_authtok.3
+++ b/contrib/openpam/doc/man/pam_get_authtok.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_GET_AUTHTOK 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_get_authtok "pam_handle_t *pamh" "int item" "const char **authtok" "const char *prompt"
.Sh DESCRIPTION
The
@@ -123,9 +123,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_get_data.3 b/contrib/openpam/doc/man/pam_get_data.3
index 0e8eadd..77d36e5 100644
--- a/contrib/openpam/doc/man/pam_get_data.3
+++ b/contrib/openpam/doc/man/pam_get_data.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_GET_DATA 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_get_data "pam_handle_t *pamh" "const char *module_data_name" "const void **data"
.Sh DESCRIPTION
The
@@ -86,9 +86,10 @@ System error.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_get_item.3 b/contrib/openpam/doc/man/pam_get_item.3
index 560603f..2bba9ed 100644
--- a/contrib/openpam/doc/man/pam_get_item.3
+++ b/contrib/openpam/doc/man/pam_get_item.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_GET_ITEM 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_get_item "pam_handle_t *pamh" "int item_type" "const void **item"
.Sh DESCRIPTION
The
@@ -119,9 +119,10 @@ System error.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_get_user.3 b/contrib/openpam/doc/man/pam_get_user.3
index 756c1af..4ba398a 100644
--- a/contrib/openpam/doc/man/pam_get_user.3
+++ b/contrib/openpam/doc/man/pam_get_user.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_GET_USER 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_get_user "pam_handle_t *pamh" "const char **user" "const char *prompt"
.Sh DESCRIPTION
The
@@ -99,9 +99,10 @@ System error.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_getenv.3 b/contrib/openpam/doc/man/pam_getenv.3
index a0daa18..07983d4 100644
--- a/contrib/openpam/doc/man/pam_getenv.3
+++ b/contrib/openpam/doc/man/pam_getenv.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_GETENV 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft const char *
+.Ft "const char *"
.Fn pam_getenv "pam_handle_t *pamh" "const char *name"
.Sh DESCRIPTION
The
@@ -75,9 +75,10 @@ on failure.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_getenvlist.3 b/contrib/openpam/doc/man/pam_getenvlist.3
index cd013e4..189b7ce 100644
--- a/contrib/openpam/doc/man/pam_getenvlist.3
+++ b/contrib/openpam/doc/man/pam_getenvlist.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_GETENVLIST 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft char **
+.Ft "char **"
.Fn pam_getenvlist "pam_handle_t *pamh"
.Sh DESCRIPTION
The
@@ -96,9 +96,10 @@ on failure.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_info.3 b/contrib/openpam/doc/man/pam_info.3
index e6cffe0..4f2bc14 100644
--- a/contrib/openpam/doc/man/pam_info.3
+++ b/contrib/openpam/doc/man/pam_info.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_INFO 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_info "pam_handle_t *pamh" "const char *fmt" "..."
.Sh DESCRIPTION
The
@@ -77,9 +77,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_open_session.3 b/contrib/openpam/doc/man/pam_open_session.3
index d00c9d2..c738d97 100644
--- a/contrib/openpam/doc/man/pam_open_session.3
+++ b/contrib/openpam/doc/man/pam_open_session.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_OPEN_SESSION 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_open_session "pam_handle_t *pamh" "int flags"
.Sh DESCRIPTION
The
@@ -100,9 +100,10 @@ System error.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_prompt.3 b/contrib/openpam/doc/man/pam_prompt.3
index 9787306..bc6f9c2 100644
--- a/contrib/openpam/doc/man/pam_prompt.3
+++ b/contrib/openpam/doc/man/pam_prompt.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_PROMPT 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_prompt "pam_handle_t *pamh" "int style" "char **resp" "const char *fmt" "..."
.Sh DESCRIPTION
The
@@ -89,9 +89,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_putenv.3 b/contrib/openpam/doc/man/pam_putenv.3
index 544371d..44527f7 100644
--- a/contrib/openpam/doc/man/pam_putenv.3
+++ b/contrib/openpam/doc/man/pam_putenv.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_PUTENV 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_putenv "pam_handle_t *pamh" "const char *namevalue"
.Sh DESCRIPTION
The
@@ -80,9 +80,10 @@ System error.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_set_data.3 b/contrib/openpam/doc/man/pam_set_data.3
index 600cd7e..231dc88 100644
--- a/contrib/openpam/doc/man/pam_set_data.3
+++ b/contrib/openpam/doc/man/pam_set_data.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_SET_DATA 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_set_data "pam_handle_t *pamh" "const char *module_data_name" "void *data" "void (*cleanup)(pam_handle_t *pamh, void *data, int pam_end_status)"
.Sh DESCRIPTION
The
@@ -91,9 +91,10 @@ System error.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_set_item.3 b/contrib/openpam/doc/man/pam_set_item.3
index b37d9b9..2fe9df8 100644
--- a/contrib/openpam/doc/man/pam_set_item.3
+++ b/contrib/openpam/doc/man/pam_set_item.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_SET_ITEM 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_set_item "pam_handle_t *pamh" "int item_type" "const void *item"
.Sh DESCRIPTION
The
@@ -84,9 +84,10 @@ System error.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_setcred.3 b/contrib/openpam/doc/man/pam_setcred.3
index 81277b5..05bd967 100644
--- a/contrib/openpam/doc/man/pam_setcred.3
+++ b/contrib/openpam/doc/man/pam_setcred.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_SETCRED 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_setcred "pam_handle_t *pamh" "int flags"
.Sh DESCRIPTION
The
@@ -113,9 +113,10 @@ Unknown user.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_setenv.3 b/contrib/openpam/doc/man/pam_setenv.3
index bc51afa..f5f05f5 100644
--- a/contrib/openpam/doc/man/pam_setenv.3
+++ b/contrib/openpam/doc/man/pam_setenv.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_SETENV 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_setenv "pam_handle_t *pamh" "const char *name" "const char *value" "int overwrite"
.Sh DESCRIPTION
The
@@ -79,9 +79,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_sm_acct_mgmt.3 b/contrib/openpam/doc/man/pam_sm_acct_mgmt.3
index 9d8c805..055a184 100644
--- a/contrib/openpam/doc/man/pam_sm_acct_mgmt.3
+++ b/contrib/openpam/doc/man/pam_sm_acct_mgmt.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_SM_ACCT_MGMT 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/pam_modules.h
-.Ft int
+.Ft "int"
.Fn pam_sm_acct_mgmt "pam_handle_t *pamh" "int flags" "int argc" "const char **argv"
.Sh DESCRIPTION
The
@@ -94,9 +94,10 @@ Unknown user.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_sm_authenticate.3 b/contrib/openpam/doc/man/pam_sm_authenticate.3
index e29b354..b791734 100644
--- a/contrib/openpam/doc/man/pam_sm_authenticate.3
+++ b/contrib/openpam/doc/man/pam_sm_authenticate.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_SM_AUTHENTICATE 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/pam_modules.h
-.Ft int
+.Ft "int"
.Fn pam_sm_authenticate "pam_handle_t *pamh" "int flags" "int argc" "const char **argv"
.Sh DESCRIPTION
The
@@ -96,9 +96,10 @@ Unknown user.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_sm_chauthtok.3 b/contrib/openpam/doc/man/pam_sm_chauthtok.3
index 44702b1..ccdac2e 100644
--- a/contrib/openpam/doc/man/pam_sm_chauthtok.3
+++ b/contrib/openpam/doc/man/pam_sm_chauthtok.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_SM_CHAUTHTOK 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/pam_modules.h
-.Ft int
+.Ft "int"
.Fn pam_sm_chauthtok "pam_handle_t *pamh" "int flags" "int argc" "const char **argv"
.Sh DESCRIPTION
The
@@ -96,9 +96,10 @@ Try again.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_sm_close_session.3 b/contrib/openpam/doc/man/pam_sm_close_session.3
index 99fd187..7869388 100644
--- a/contrib/openpam/doc/man/pam_sm_close_session.3
+++ b/contrib/openpam/doc/man/pam_sm_close_session.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_SM_CLOSE_SESSION 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/pam_modules.h
-.Ft int
+.Ft "int"
.Fn pam_sm_close_session "pam_handle_t *pamh" "int flags" "int args" "const char **argv"
.Sh DESCRIPTION
The
@@ -88,9 +88,10 @@ System error.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_sm_open_session.3 b/contrib/openpam/doc/man/pam_sm_open_session.3
index cef70e5..20b0400 100644
--- a/contrib/openpam/doc/man/pam_sm_open_session.3
+++ b/contrib/openpam/doc/man/pam_sm_open_session.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_SM_OPEN_SESSION 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/pam_modules.h
-.Ft int
+.Ft "int"
.Fn pam_sm_open_session "pam_handle_t *pamh" "int flags" "int argc" "const char **argv"
.Sh DESCRIPTION
The
@@ -88,9 +88,10 @@ System error.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_sm_setcred.3 b/contrib/openpam/doc/man/pam_sm_setcred.3
index 5e297a3..ae97613 100644
--- a/contrib/openpam/doc/man/pam_sm_setcred.3
+++ b/contrib/openpam/doc/man/pam_sm_setcred.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_SM_SETCRED 3
.Os
.Sh NAME
@@ -45,7 +45,7 @@
.In sys/types.h
.In security/pam_appl.h
.In security/pam_modules.h
-.Ft int
+.Ft "int"
.Fn pam_sm_setcred "pam_handle_t *pamh" "int flags" "int argc" "const char **argv"
.Sh DESCRIPTION
The
@@ -94,9 +94,10 @@ Unknown user.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_start.3 b/contrib/openpam/doc/man/pam_start.3
index 369d74d..042f076 100644
--- a/contrib/openpam/doc/man/pam_start.3
+++ b/contrib/openpam/doc/man/pam_start.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_START 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_start "const char *service" "const char *user" "const struct pam_conv *pam_conv" "pam_handle_t **pamh"
.Sh DESCRIPTION
The
@@ -99,9 +99,10 @@ System error.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_strerror.3 b/contrib/openpam/doc/man/pam_strerror.3
index 53998af..633fab3 100644
--- a/contrib/openpam/doc/man/pam_strerror.3
+++ b/contrib/openpam/doc/man/pam_strerror.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_STRERROR 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft const char *
+.Ft "const char *"
.Fn pam_strerror "pam_handle_t *pamh" "int error_number"
.Sh DESCRIPTION
The
@@ -71,9 +71,10 @@ on failure.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_verror.3 b/contrib/openpam/doc/man/pam_verror.3
index 419589b..902c0b6 100644
--- a/contrib/openpam/doc/man/pam_verror.3
+++ b/contrib/openpam/doc/man/pam_verror.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_VERROR 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_verror "pam_handle_t *pamh" "const char *fmt" "va_list ap"
.Sh DESCRIPTION
The
@@ -81,9 +81,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_vinfo.3 b/contrib/openpam/doc/man/pam_vinfo.3
index e80225c..3077430 100644
--- a/contrib/openpam/doc/man/pam_vinfo.3
+++ b/contrib/openpam/doc/man/pam_vinfo.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_VINFO 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_vinfo "pam_handle_t *pamh" "const char *fmt" "va_list ap"
.Sh DESCRIPTION
The
@@ -81,9 +81,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
diff --git a/contrib/openpam/doc/man/pam_vprompt.3 b/contrib/openpam/doc/man/pam_vprompt.3
index 7e90fba..04766d9 100644
--- a/contrib/openpam/doc/man/pam_vprompt.3
+++ b/contrib/openpam/doc/man/pam_vprompt.3
@@ -33,7 +33,7 @@
.\"
.\" $P4$
.\"
-.Dd June 1, 2003
+.Dd July 15, 2003
.Dt PAM_VPROMPT 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In sys/types.h
.In security/pam_appl.h
-.Ft int
+.Ft "int"
.Fn pam_vprompt "pam_handle_t *pamh" "int style" "char **resp" "const char *fmt" "va_list ap"
.Sh DESCRIPTION
The
@@ -118,9 +118,10 @@ function is an OpenPAM extension.
.Sh AUTHORS
The
.Nm
-function and this manual page were developed for the FreeBSD Project
-by ThinkSec AS and Network Associates Laboratories, the Security
-Research Division of Network Associates, Inc. under DARPA/SPAWAR
-contract N66001-01-C-8035
+function and this manual page were developed for the
+.Fx
+Project by ThinkSec AS and Network Associates Laboratories, the
+Security Research Division of Network Associates, Inc. under
+DARPA/SPAWAR contract N66001-01-C-8035
.Pq Dq CBOSS ,
as part of the DARPA CHATS research program.
OpenPOWER on IntegriCloud