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

Diff for /src/usr.bin/ssh/ssh_api.c between version 1.19 and 1.20

version 1.19, 2019/10/31 21:23:19 version 1.20, 2020/07/01 16:28:31
Line 146 
Line 146 
 {  {
         struct key_entry *k;          struct key_entry *k;
   
         ssh_packet_close(ssh);  
         /*          /*
          * we've only created the public keys variants in case we           * we've only created the public keys variants in case we
          * are a acting as a server.           * are a acting as a server.
Line 161 
Line 160 
                 TAILQ_REMOVE(&ssh->private_keys, k, next);                  TAILQ_REMOVE(&ssh->private_keys, k, next);
                 free(k);                  free(k);
         }          }
         if (ssh->kex)          ssh_packet_close(ssh);
                 kex_free(ssh->kex);  
         free(ssh);          free(ssh);
 }  }
   

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20