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

Diff for /src/usr.bin/ssh/monitor_wrap.c between version 1.49 and 1.50

version 1.49, 2006/08/01 23:22:47 version 1.50, 2006/08/03 03:34:42
Line 25 
Line 25 
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.   * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */   */
   
 #include "includes.h"  
   
 #include <sys/types.h>  #include <sys/types.h>
   
 #include <openssl/bn.h>  #include <openssl/bn.h>
Line 34 
Line 32 
   
 #include <errno.h>  #include <errno.h>
 #include <pwd.h>  #include <pwd.h>
   #include <signal.h>
 #include <stdio.h>  #include <stdio.h>
 #include <string.h>  #include <string.h>
   
   #include "xmalloc.h"
 #include "ssh.h"  #include "ssh.h"
 #include "dh.h"  #include "dh.h"
   #include "buffer.h"
   #include "key.h"
   #include "cipher.h"
 #include "kex.h"  #include "kex.h"
   #include "hostfile.h"
 #include "auth.h"  #include "auth.h"
 #include "auth-options.h"  #include "auth-options.h"
 #include "buffer.h"  
 #include "bufaux.h"  
 #include "packet.h"  #include "packet.h"
 #include "mac.h"  #include "mac.h"
 #include "log.h"  #include "log.h"
 #include "zlib.h"  #include "zlib.h"
 #include "monitor.h"  #include "monitor.h"
   #ifdef GSSAPI
   #include "ssh-gss.h"
   #endif
 #include "monitor_wrap.h"  #include "monitor_wrap.h"
 #include "xmalloc.h"  
 #include "atomicio.h"  #include "atomicio.h"
 #include "monitor_fdpass.h"  #include "monitor_fdpass.h"
 #include "misc.h"  #include "misc.h"
   
 #include "auth.h"  
 #include "channels.h"  #include "channels.h"
 #include "session.h"  #include "session.h"
   
 #ifdef GSSAPI  
 #include "ssh-gss.h"  
 #endif  
   
 /* Imports */  /* Imports */
 extern int compat20;  extern int compat20;

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50