aboutsummaryrefslogtreecommitdiff
path: root/libpam
diff options
context:
space:
mode:
authorTobias Stoeckmann <tobias@stoeckmann.org>2024-01-16 20:40:36 +0100
committerDmitry V. Levin <ldv@strace.io>2024-01-16 19:41:57 +0000
commit02109c0c51c90913495965a66462b46ec2fe7346 (patch)
tree38d927db0a9dc5f2a0ff7ce9344dff1e539c8b58 /libpam
parent2173e2456befd24eea5051736578d10d9592fb37 (diff)
downloadpam-02109c0c51c90913495965a66462b46ec2fe7346.tar.gz
pam-02109c0c51c90913495965a66462b46ec2fe7346.tar.bz2
pam-02109c0c51c90913495965a66462b46ec2fe7346.zip
libpam: fix typo in comment
Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
Diffstat (limited to 'libpam')
-rw-r--r--libpam/pam_delay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpam/pam_delay.c b/libpam/pam_delay.c
index 357ae276..9c6716a1 100644
--- a/libpam/pam_delay.c
+++ b/libpam/pam_delay.c
@@ -125,7 +125,7 @@ void _pam_await_timer(pam_handle_t *pamh, int status)
delay_uint = delay > UINT_MAX ? UINT_MAX : (unsigned int) delay;
- /* always call the applications delay function, even if
+ /* always call the application's delay function, even if
the delay is zero - indicate status */
hack_fn_u.value = pamh->fail_delay.delay_fn_ptr;
hack_fn_u.fn(status, delay_uint, appdata_ptr);