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

Diff for /src/usr.bin/ssh/ssh-keygen.c between version 1.224 and 1.226

version 1.224, 2013/01/18 07:59:46 version 1.226, 2013/04/19 01:01:00
Line 2023 
Line 2023 
         }          }
         if (strcmp(path, "-") != 0)          if (strcmp(path, "-") != 0)
                 fclose(krl_spec);                  fclose(krl_spec);
           free(path);
 }  }
   
 static void  static void
Line 2075 
Line 2076 
         close(fd);          close(fd);
         buffer_free(&kbuf);          buffer_free(&kbuf);
         ssh_krl_free(krl);          ssh_krl_free(krl);
           if (ca != NULL)
                   key_free(ca);
 }  }
   
 static void  static void
Line 2489 
Line 2492 
   
         if (do_screen_candidates) {          if (do_screen_candidates) {
                 FILE *in;                  FILE *in;
                 FILE *out = fopen(out_file, "w");                  FILE *out = fopen(out_file, "a");
   
                 if (have_identity && strcmp(identity_file, "-") != 0) {                  if (have_identity && strcmp(identity_file, "-") != 0) {
                         if ((in = fopen(identity_file, "r")) == NULL) {                          if ((in = fopen(identity_file, "r")) == NULL) {

Legend:
Removed from v.1.224  
changed lines
  Added in v.1.226