[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.272 and 1.273

version 1.272, 2016/09/12 01:22:38 version 1.273, 2017/03/10 03:22:40
Line 1506 
Line 1506 
         if (options.add_keys_to_agent == 2 &&          if (options.add_keys_to_agent == 2 &&
             !ask_permission("Add key %s (%s) to agent?", authfile, comment)) {              !ask_permission("Add key %s (%s) to agent?", authfile, comment)) {
                 debug3("user denied adding this key");                  debug3("user denied adding this key");
                   close(auth_sock);
                 return;                  return;
         }          }
   
Line 1514 
Line 1515 
                 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);
           close(auth_sock);
 }  }

Legend:
Removed from v.1.272  
changed lines
  Added in v.1.273