mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-21 15:45:02 +00:00
No newline required.
MFC after: 2 weeks
This commit is contained in:
parent
7a9611bf5e
commit
8e391be103
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=219426
@ -103,11 +103,11 @@ pam_ssh_load_key(const char *dir, const char *kfn, const char *passphrase)
|
||||
comment = NULL;
|
||||
key = key_load_private(fn, passphrase, &comment);
|
||||
if (key == NULL) {
|
||||
openpam_log(PAM_LOG_DEBUG, "failed to load key from %s\n", fn);
|
||||
openpam_log(PAM_LOG_DEBUG, "failed to load key from %s", fn);
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
openpam_log(PAM_LOG_DEBUG, "loaded '%s' from %s\n", comment, fn);
|
||||
openpam_log(PAM_LOG_DEBUG, "loaded '%s' from %s", comment, fn);
|
||||
if ((psk = malloc(sizeof(*psk))) == NULL) {
|
||||
key_free(key);
|
||||
free(comment);
|
||||
|
Loading…
Reference in New Issue
Block a user