=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/ssh.c,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- src/usr.bin/ssh/ssh.c 1999/11/23 22:25:55 1.31 +++ src/usr.bin/ssh/ssh.c 1999/11/24 00:26:03 1.32 @@ -1,24 +1,17 @@ /* + * Author: Tatu Ylonen + * Copyright (c) 1995 Tatu Ylonen , 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 in Canada. + */ -ssh.c - -Author: Tatu Ylonen - -Copyright (c) 1995 Tatu Ylonen , 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 in Canada. - -*/ - #include "includes.h" -RCSID("$Id: ssh.c,v 1.31 1999/11/23 22:25:55 markus Exp $"); +RCSID("$Id: ssh.c,v 1.32 1999/11/24 00:26:03 deraadt Exp $"); #include "xmalloc.h" #include "ssh.h" @@ -111,9 +104,10 @@ 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 rsh_connect(char *host, char *user, Buffer * command) { @@ -148,8 +142,9 @@ exit(1); } -/* Main program for the ssh client. */ - +/* + * Main program for the ssh client. + */ int main(int ac, char **av) {