aboutsummaryrefslogtreecommitdiff
path: root/libpam_misc
diff options
context:
space:
mode:
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 */