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

Diff for /src/usr.bin/ssh/ssh.c between version 1.31 and 1.32

version 1.31, 1999/11/23 22:25:55 version 1.32, 1999/11/24 00:26:03
Line 1 
Line 1 
 /*  /*
    * Author: Tatu Ylonen <ylo@cs.hut.fi>
    * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
    *                    All rights reserved
    * Created: Sat Mar 18 16:36:11 1995 ylo
    * Ssh client program.  This program can be used to log into a remote machine.
    * The software supports strong authentication, encryption, and forwarding
    * of X11, TCP/IP, and authentication connections.
    *
    * Modified to work with SSL by Niels Provos <provos@citi.umich.edu> in Canada.
    */
   
 ssh.c  
   
 Author: Tatu Ylonen <ylo@cs.hut.fi>  
   
 Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland  
                    All rights reserved  
   
 Created: Sat Mar 18 16:36:11 1995 ylo  
   
 Ssh client program.  This program can be used to log into a remote machine.  
 The software supports strong authentication, encryption, and forwarding  
 of X11, TCP/IP, and authentication connections.  
   
 Modified to work with SSL by Niels Provos <provos@citi.umich.edu> in Canada.  
   
 */  
   
 #include "includes.h"  #include "includes.h"
 RCSID("$Id$");  RCSID("$Id$");
   
Line 111 
Line 104 
         exit(1);          exit(1);
 }  }
   
 /* Connects to the given host using rsh (or prints an error message and exits  /*
    if rsh is not available).  This function never returns. */   * Connects to the given host using rsh (or prints an error message and exits
    * if rsh is not available).  This function never returns.
    */
 void  void
 rsh_connect(char *host, char *user, Buffer * command)  rsh_connect(char *host, char *user, Buffer * command)
 {  {
Line 148 
Line 142 
         exit(1);          exit(1);
 }  }
   
 /* Main program for the ssh client. */  /*
    * Main program for the ssh client.
    */
 int  int
 main(int ac, char **av)  main(int ac, char **av)
 {  {

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32