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

Diff for /src/usr.bin/ssh/ssh-agent.c between version 1.21 and 1.22

version 1.21, 1999/11/23 22:25:55 version 1.22, 1999/11/24 00:26:03
Line 1 
Line 1 
 /*      $OpenBSD$       */  /*      $OpenBSD$       */
   
 /*  /*
    * Author: Tatu Ylonen <ylo@cs.hut.fi>
    * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
    *                    All rights reserved
    * Created: Wed Mar 29 03:46:59 1995 ylo
    * The authentication agent program.
    */
   
 ssh-agent.c  
   
 Author: Tatu Ylonen <ylo@cs.hut.fi>  
   
 Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland  
                    All rights reserved  
   
 Created: Wed Mar 29 03:46:59 1995 ylo  
   
 The authentication agent program.  
   
 */  
   
 #include "includes.h"  #include "includes.h"
 RCSID("$OpenBSD$");  RCSID("$OpenBSD$");
   
Line 213 
Line 206 
         buffer_put_char(&e->output, SSH_AGENT_FAILURE);          buffer_put_char(&e->output, SSH_AGENT_FAILURE);
 }  }
   
 /* Removes all identities from the agent. */  /*
    * Removes all identities from the agent.
    */
 void  void
 process_remove_all_identities(SocketEntry *e)  process_remove_all_identities(SocketEntry *e)
 {  {
Line 235 
Line 229 
         return;          return;
 }  }
   
 /* Adds an identity to the agent. */  /*
    * Adds an identity to the agent.
    */
 void  void
 process_add_identity(SocketEntry *e)  process_add_identity(SocketEntry *e)
 {  {

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22