[BACK]Return to sshconnect.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/sshconnect.c between version 1.296 and 1.297

version 1.296, 2018/02/23 04:18:46 version 1.297, 2018/02/23 15:58:38
Line 1435 
Line 1435 
                 KEY_DSA,                  KEY_DSA,
                 KEY_ECDSA,                  KEY_ECDSA,
                 KEY_ED25519,                  KEY_ED25519,
                   KEY_XMSS,
                 -1                  -1
         };          };
         int i, ret = 0;          int i, ret = 0;
Line 1552 
Line 1553 
         }          }
   
         if ((r = ssh_add_identity_constrained(auth_sock, private, comment, 0,          if ((r = ssh_add_identity_constrained(auth_sock, private, comment, 0,
             (options.add_keys_to_agent == 3))) == 0)              (options.add_keys_to_agent == 3), 0)) == 0)
                 debug("identity added to agent: %s", authfile);                  debug("identity added to agent: %s", authfile);
         else          else
                 debug("could not add identity to agent: %s (%d)", authfile, r);                  debug("could not add identity to agent: %s (%d)", authfile, r);

Legend:
Removed from v.1.296  
changed lines
  Added in v.1.297