diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2020-03-28 18:19:41 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2020-03-28 18:19:41 +0000 |
commit | 897c7412b26ca618af6822dcaa7e6be68772dc52 (patch) | |
tree | abad115d8ebf3bf901361994242a8a3276648435 /libpam/pam_handlers.c | |
parent | ca51775485e303d79ec4ad7a00e764807daebc29 (diff) | |
download | pam-897c7412b26ca618af6822dcaa7e6be68772dc52.tar.gz pam-897c7412b26ca618af6822dcaa7e6be68772dc52.tar.bz2 pam-897c7412b26ca618af6822dcaa7e6be68772dc52.zip |
Fix various typos found using codespell tool
Diffstat (limited to 'libpam/pam_handlers.c')
-rw-r--r-- | libpam/pam_handlers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpam/pam_handlers.c b/libpam/pam_handlers.c index 79961ed2..ffa5e4ae 100644 --- a/libpam/pam_handlers.c +++ b/libpam/pam_handlers.c @@ -559,7 +559,7 @@ int _pam_init_handlers(pam_handle_t *pamh) /* * This is where we read a line of the PAM config file. The line may be - * preceeded by lines of comments and also extended with "\\\n" + * preceded by lines of comments and also extended with "\\\n" */ static int _pam_assemble_line(FILE *f, char *buffer, int buf_len) @@ -1034,7 +1034,7 @@ void _pam_free_handlers_aux(struct handler **hp) D(("called.")); while (h) { last = h; - _pam_drop(h->argv); /* This is all alocated in a single chunk */ + _pam_drop(h->argv); /* This is all allocated in a single chunk */ _pam_drop(h->mod_name); h = h->next; memset(last, 0, sizeof(*last)); |