summaryrefslogtreecommitdiff
path: root/modules/pam_mail
diff options
context:
space:
mode:
authored neville <ed@s5h.net>2022-11-03 18:44:47 +0000
committerDmitry V. Levin <ldv@altlinux.org>2022-11-11 11:11:00 +0000
commitea89f932aedffc1e4c08ab6a3f55baecd7933799 (patch)
tree962617e94499f83a07283d26a6e2ae6de87ee9eb /modules/pam_mail
parent95d45fb3cfc66e2c081e700210b82fd80d5bdfcf (diff)
downloadlinux-pam-git-ea89f932aedffc1e4c08ab6a3f55baecd7933799.tar.gz
pam_mail: adjust wording for no new mail
Wording of no new mail message should be significantly different from new mail so that it does not align in length or similar words. * modules/pam_mail/pam_mail.c (report_mail): Change the wording of no new mail message. Resolves: https://github.com/linux-pam/linux-pam/issues/465
Diffstat (limited to 'modules/pam_mail')
-rw-r--r--modules/pam_mail/pam_mail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_mail/pam_mail.c b/modules/pam_mail/pam_mail.c
index 17383c7b..7eb94fc7 100644
--- a/modules/pam_mail/pam_mail.c
+++ b/modules/pam_mail/pam_mail.c
@@ -286,7 +286,7 @@ report_mail(pam_handle_t *pamh, int ctrl, int type, const char *folder)
switch (type)
{
case HAVE_NO_MAIL:
- retval = pam_info (pamh, "%s", _("You have no mail."));
+ retval = pam_info (pamh, "%s", _("You do not have any new mail."));
break;
case HAVE_NEW_MAIL:
retval = pam_info (pamh, "%s", _("You have new mail."));