No newline required.

MFC after:	2 weeks
This commit is contained in:
Dag-Erling Smørgrav 2011-03-09 14:38:00 +00:00
parent 7a9611bf5e
commit 8e391be103
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=219426

View File

@ -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);