diff options
author | des <des@FreeBSD.org> | 2002-12-16 15:28:05 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-12-16 15:28:05 +0000 |
commit | 9c13a1ee5f744e6c21ae65cb3ed17e00d241a72f (patch) | |
tree | ecbdd15371b5e36058a6a262d89a55baf407a91c /contrib/openpam/lib/openpam_nullconv.c | |
parent | 7966ff24b5238d36ecd0fce943ba5db101374b4e (diff) | |
parent | 18c136aadd659f7b141653f3f614063e70bc59eb (diff) | |
download | FreeBSD-src-9c13a1ee5f744e6c21ae65cb3ed17e00d241a72f.zip FreeBSD-src-9c13a1ee5f744e6c21ae65cb3ed17e00d241a72f.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r107937,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/openpam/lib/openpam_nullconv.c')
-rw-r--r-- | contrib/openpam/lib/openpam_nullconv.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/contrib/openpam/lib/openpam_nullconv.c b/contrib/openpam/lib/openpam_nullconv.c index 59811e9..94a9936 100644 --- a/contrib/openpam/lib/openpam_nullconv.c +++ b/contrib/openpam/lib/openpam_nullconv.c @@ -31,13 +31,14 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $P4: //depot/projects/openpam/lib/openpam_nullconv.c#3 $ + * $P4: //depot/projects/openpam/lib/openpam_nullconv.c#4 $ */ #include <sys/types.h> #include <security/pam_appl.h> -#include <security/openpam.h> + +#include "openpam_impl.h" /* * OpenPAM extension @@ -52,11 +53,12 @@ openpam_nullconv(int n, void *data) { + ENTER(); (void)n; (void)msg; (void)resp; (void)data; - return (PAM_CONV_ERR); + RETURNC(PAM_CONV_ERR); } /* |