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);
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to