diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2000-09-05 05:08:31 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2000-09-05 05:08:31 +0000 |
commit | d79d8183d9bda40499a2c2f7f0f2f9b896017031 (patch) | |
tree | c332ebffed2bde03be4bae33ce0bf0ac24988eb2 | |
parent | e70c9f1088db23f6a3f8fc911df014f3b45b8173 (diff) | |
download | pam-d79d8183d9bda40499a2c2f7f0f2f9b896017031.tar.gz pam-d79d8183d9bda40499a2c2f7f0f2f9b896017031.tar.bz2 pam-d79d8183d9bda40499a2c2f7f0f2f9b896017031.zip |
Relevant BUGIDs: 112646
Purpose of commit: comment bugfix
Commit summary:
---------------
Keep comment in line with actual implementation of the fail delay
callback function.
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | libpam/include/security/_pam_types.h | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -35,6 +35,8 @@ Where you should replace XXXXX with a bug-id. 0.73: please submit patches for this section with actual code/doc patches! +* comment fix describing fail_delay callback in _pam_types.h (Bug + 112646 - agmorgan) * "likeauth" fix for pam_unix and pam_pwdb which (Bug 113596 - agmorgan) * fix for pam_unix (support.c) to avoid segfault with NULL password (Bug 113238 - vorlon) diff --git a/libpam/include/security/_pam_types.h b/libpam/include/security/_pam_types.h index fe4ada39..f192409e 100644 --- a/libpam/include/security/_pam_types.h +++ b/libpam/include/security/_pam_types.h @@ -175,7 +175,7 @@ extern char **pam_getenvlist(pam_handle_t *pamh); * This item was added to accommodate event driven programs that need to * manage delays more carefully. The function prototype for this data * item is - * void (*fail_delay)(int status, unsigned int delay); + * void (*fail_delay)(int status, unsigned int delay, void *appdata_ptr); */ #define HAVE_PAM_FAIL_DELAY |