diff options
author | Tobias Stoeckmann <tobias@stoeckmann.org> | 2023-12-06 22:48:34 +0100 |
---|---|---|
committer | Dmitry V. Levin <ldv@strace.io> | 2023-12-18 09:10:08 +0000 |
commit | 0fb2978d0e139dc57878d5c82d6eae79273e2031 (patch) | |
tree | a6bcd89e4d82815b8b0767fb2b823283eced379e /modules/pam_pwhistory/opasswd.c | |
parent | 04134cc04a6c36acd52aa92c955ae0eba72fd038 (diff) | |
download | pam-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 'modules/pam_pwhistory/opasswd.c')
-rw-r--r-- | modules/pam_pwhistory/opasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_pwhistory/opasswd.c b/modules/pam_pwhistory/opasswd.c index 5f577dfd..f1f62aaf 100644 --- a/modules/pam_pwhistory/opasswd.c +++ b/modules/pam_pwhistory/opasswd.c @@ -425,7 +425,7 @@ save_old_pass, const char *user, int howmany, const char *filename, int debug UN /* increase count. */ entry.count++; - /* check that we don't remember to many passwords. */ + /* check that we don't remember too many passwords. */ while (entry.count > howmany && entry.count > 1) { char *p = strpbrk (entry.old_passwords, ","); |