[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.38 and 1.39

version 1.38, 2001/06/06 23:19:35 version 1.39, 2001/06/23 15:12:20
Line 51 
Line 51 
   
 /* we keep a cache of one passphrases */  /* we keep a cache of one passphrases */
 static char *pass = NULL;  static char *pass = NULL;
 void  static void
 clear_pass(void)  clear_pass(void)
 {  {
         if (pass) {          if (pass) {
Line 61 
Line 61 
         }          }
 }  }
   
 void  static void
 delete_file(AuthenticationConnection *ac, const char *filename)  delete_file(AuthenticationConnection *ac, const char *filename)
 {  {
         Key *public;          Key *public;
Line 81 
Line 81 
 }  }
   
 /* Send a request to remove all identities. */  /* Send a request to remove all identities. */
 void  static void
 delete_all(AuthenticationConnection *ac)  delete_all(AuthenticationConnection *ac)
 {  {
         int success = 1;          int success = 1;
Line 97 
Line 97 
                 fprintf(stderr, "Failed to remove all identities.\n");                  fprintf(stderr, "Failed to remove all identities.\n");
 }  }
   
 void  static void
 add_file(AuthenticationConnection *ac, const char *filename)  add_file(AuthenticationConnection *ac, const char *filename)
 {  {
         struct stat st;          struct stat st;
Line 143 
Line 143 
         key_free(private);          key_free(private);
 }  }
   
 void  static void
 list_identities(AuthenticationConnection *ac, int do_fp)  list_identities(AuthenticationConnection *ac, int do_fp)
 {  {
         Key *key;          Key *key;

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.39