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

Diff for /src/usr.bin/ssh/sshconnect2.c between version 1.234 and 1.235

version 1.234, 2015/12/11 02:20:28 version 1.235, 2015/12/11 02:31:47
Line 1410 
Line 1410 
         for (id = TAILQ_FIRST(&authctxt->keys); id;          for (id = TAILQ_FIRST(&authctxt->keys); id;
             id = TAILQ_FIRST(&authctxt->keys)) {              id = TAILQ_FIRST(&authctxt->keys)) {
                 TAILQ_REMOVE(&authctxt->keys, id, next);                  TAILQ_REMOVE(&authctxt->keys, id, next);
                 if (id->key)                  sshkey_free(id->key);
                         sshkey_free(id->key);  
                 free(id->filename);                  free(id->filename);
                 free(id);                  free(id);
         }          }

Legend:
Removed from v.1.234  
changed lines
  Added in v.1.235