svn commit: r219426 - head/lib/libpam/modules/pam_ssh

Dag-Erling Smorgrav des at FreeBSD.org
Wed Mar 9 14:38:00 UTC 2011


Author: des
Date: Wed Mar  9 14:38:00 2011
New Revision: 219426
URL: http://svn.freebsd.org/changeset/base/219426

Log:
  No newline required.
  
  MFC after:	2 weeks

Modified:
  head/lib/libpam/modules/pam_ssh/pam_ssh.c

Modified: head/lib/libpam/modules/pam_ssh/pam_ssh.c
==============================================================================
--- head/lib/libpam/modules/pam_ssh/pam_ssh.c	Wed Mar  9 12:14:49 2011	(r219425)
+++ head/lib/libpam/modules/pam_ssh/pam_ssh.c	Wed Mar  9 14:38:00 2011	(r219426)
@@ -103,11 +103,11 @@ pam_ssh_load_key(const char *dir, const 
 	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);


More information about the svn-src-head mailing list