aboutsummaryrefslogtreecommitdiff
path: root/libpam_misc
diff options
context:
space:
mode:
authorTobias Stoeckmann <tobias@stoeckmann.org>2023-12-06 22:48:34 +0100
committerDmitry V. Levin <ldv@strace.io>2023-12-18 09:10:08 +0000
commit0fb2978d0e139dc57878d5c82d6eae79273e2031 (patch)
treea6bcd89e4d82815b8b0767fb2b823283eced379e /libpam_misc
parent04134cc04a6c36acd52aa92c955ae0eba72fd038 (diff)
downloadpam-0fb2978d0e139dc57878d5c82d6eae79273e2031.tar.gz
pam-0fb2978d0e139dc57878d5c82d6eae79273e2031.tar.bz2
pam-0fb2978d0e139dc57878d5c82d6eae79273e2031.zip
treewide: fix typos in comments and documentation
Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
Diffstat (limited to 'libpam_misc')
-rw-r--r--libpam_misc/misc_conv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpam_misc/misc_conv.c b/libpam_misc/misc_conv.c
index 0f213bce..7410e929 100644
--- a/libpam_misc/misc_conv.c
+++ b/libpam_misc/misc_conv.c
@@ -97,7 +97,7 @@ static int get_delay(void)
expired = 0; /* reset flag */
(void) time(&now);
- /* has the quit time past? */
+ /* has the quit time passed? */
if (pam_misc_conv_die_time && now >= pam_misc_conv_die_time) {
fprintf(stderr,"%s",pam_misc_conv_die_line);
@@ -105,7 +105,7 @@ static int get_delay(void)
return -1; /* time is up */
}
- /* has the warning time past? */
+ /* has the warning time passed? */
if (pam_misc_conv_warn_time && now >= pam_misc_conv_warn_time) {
fprintf(stderr, "%s", pam_misc_conv_warn_line);
pam_misc_conv_warn_time = 0; /* reset warn_time */