[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.320 and 1.321

version 1.320, 2020/02/06 22:48:23 version 1.321, 2020/04/17 03:38:47
Line 1664 
Line 1664 
                 found = 0;                  found = 0;
                 TAILQ_FOREACH(id2, &files, next) {                  TAILQ_FOREACH(id2, &files, next) {
                         if (id2->key == NULL ||                          if (id2->key == NULL ||
                             (id2->key->flags & SSHKEY_FLAG_EXT) == 0)                              (id2->key->flags & SSHKEY_FLAG_EXT) != 0)
                                 continue;                                  continue;
                         if (sshkey_equal(id->key, id2->key)) {                          if (sshkey_equal(id->key, id2->key)) {
                                 TAILQ_REMOVE(&files, id, next);                                  TAILQ_REMOVE(&files, id, next);

Legend:
Removed from v.1.320  
changed lines
  Added in v.1.321