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

Diff for /src/usr.bin/ssh/Attic/sshconnect1.c between version 1.17 and 1.18

version 1.17, 2001/01/19 15:55:12 version 1.18, 2001/01/21 19:06:00
Line 16 
Line 16 
 RCSID("$OpenBSD$");  RCSID("$OpenBSD$");
   
 #include <openssl/bn.h>  #include <openssl/bn.h>
 #include <openssl/dsa.h>  
 #include <openssl/rsa.h>  
 #include <openssl/evp.h>  #include <openssl/evp.h>
   
 #include "xmalloc.h"  #ifdef KRB4
 #include "rsa.h"  #include <krb.h>
   #include "radix.h"
   #endif
   #ifdef AFS
   #include <kafs.h>
   #endif
   
 #include "ssh.h"  #include "ssh.h"
 #include "ssh1.h"  #include "ssh1.h"
   #include "xmalloc.h"
   #include "rsa.h"
 #include "buffer.h"  #include "buffer.h"
 #include "packet.h"  #include "packet.h"
 #include "mpaux.h"  #include "mpaux.h"
 #include "uidswap.h"  #include "uidswap.h"
   #include "log.h"
 #include "readconf.h"  #include "readconf.h"
 #include "key.h"  #include "key.h"
 #include "authfd.h"  #include "authfd.h"
 #include "sshconnect.h"  #include "sshconnect.h"
 #include "authfile.h"  #include "authfile.h"
   #include "readpass.h"
   #include "cipher.h"
   #include "canohost.h"
   
 /* Session id for the current session. */  /* Session id for the current session. */
 u_char session_id[16];  u_char session_id[16];

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18