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

Diff for /src/usr.bin/ssh/ssh-add.c between version 1.7 and 1.8

version 1.7, 1999/10/27 23:35:32 version 1.8, 1999/11/02 19:42:36
Line 131 
Line 131 
       had_identities = 1;        had_identities = 1;
       printf("%d ", bits);        printf("%d ", bits);
       buf = BN_bn2dec(e);        buf = BN_bn2dec(e);
       assert(buf != NULL);        if (buf != NULL) {
       printf("%s ", buf);          printf("%s ", buf);
       free (buf);          free (buf);
         } else {
           error("list_identities: BN_bn2dec #1 failed.");
         }
       buf = BN_bn2dec(n);        buf = BN_bn2dec(n);
       assert(buf != NULL);        if (buf != NULL) {
       printf("%s %s\n", buf, comment);          printf("%s %s\n", buf, comment);
       free (buf);          free (buf);
         } else {
           error("list_identities: BN_bn2dec #2 failed.");
         }
       xfree(comment);        xfree(comment);
     }      }
   BN_clear_free(e);    BN_clear_free(e);

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8