diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2011-03-09 14:38:00 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2011-03-09 14:38:00 +0000 |
| commit | 8e391be103de3d175a40b384b4c48327d20b4bfa (patch) | |
| tree | 40c28299ad30dab3e8f7e2db5f155b4f2c19bd53 /lib/libpam | |
| parent | 7a9611bf5ee27f8352ce37ddc004c604cd41ca10 (diff) | |
Notes
Diffstat (limited to 'lib/libpam')
| -rw-r--r-- | lib/libpam/modules/pam_ssh/pam_ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpam/modules/pam_ssh/pam_ssh.c b/lib/libpam/modules/pam_ssh/pam_ssh.c index 9d89045ac22f..bec9892b52ae 100644 --- a/lib/libpam/modules/pam_ssh/pam_ssh.c +++ b/lib/libpam/modules/pam_ssh/pam_ssh.c @@ -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); |
