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

Diff for /src/usr.bin/ssh/auth-options.c between version 1.39 and 1.40

version 1.39, 2006/07/22 20:48:22 version 1.40, 2006/08/03 03:34:41
Line 10 
Line 10 
  * called by a name other than "ssh" or "Secure Shell".   * called by a name other than "ssh" or "Secure Shell".
  */   */
   
 #include "includes.h"  
   
 #include <sys/types.h>  #include <sys/types.h>
   
 #include <netdb.h>  #include <netdb.h>
 #include <pwd.h>  #include <pwd.h>
 #include <string.h>  #include <string.h>
   #include <stdio.h>
   #include <stdarg.h>
   
 #include "xmalloc.h"  #include "xmalloc.h"
 #include "match.h"  #include "match.h"
 #include "log.h"  #include "log.h"
 #include "canohost.h"  #include "canohost.h"
   #include "buffer.h"
 #include "channels.h"  #include "channels.h"
 #include "auth-options.h"  #include "auth-options.h"
 #include "servconf.h"  #include "servconf.h"
 #include "misc.h"  #include "misc.h"
 #include "monitor_wrap.h"  #include "key.h"
   #include "hostfile.h"
 #include "auth.h"  #include "auth.h"
   #ifdef GSSAPI
   #include "ssh-gss.h"
   #endif
   #include "monitor_wrap.h"
   
 /* Flags set authorized_keys flags */  /* Flags set authorized_keys flags */
 int no_port_forwarding_flag = 0;  int no_port_forwarding_flag = 0;

Legend:
Removed from v.1.39  
changed lines
  Added in v.1.40