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

Diff for /src/usr.bin/ssh/authfile.c between version 1.110 and 1.111

version 1.110, 2015/01/20 23:14:00 version 1.111, 2015/02/23 16:55:51
Line 338 
Line 338 
         if (commentp != NULL)          if (commentp != NULL)
                 *commentp = NULL;                  *commentp = NULL;
   
           /* XXX should load file once and attempt to parse each format */
   
         if ((fd = open(filename, O_RDONLY)) < 0)          if ((fd = open(filename, O_RDONLY)) < 0)
                 goto skip;                  goto skip;
 #ifdef WITH_SSH1  #ifdef WITH_SSH1
Line 389 
Line 391 
                 return 0;                  return 0;
         }          }
         sshkey_free(pub);          sshkey_free(pub);
   
         return r;          return r;
 }  }
   

Legend:
Removed from v.1.110  
changed lines
  Added in v.1.111