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

Diff for /src/usr.bin/ssh/auth2-gss.c between version 1.14 and 1.15

version 1.14, 2006/03/25 22:22:42 version 1.15, 2006/08/03 03:34:41
Line 24 
Line 24 
  * 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>
   
 #ifdef GSSAPI  #include "xmalloc.h"
   #include "key.h"
   #include "hostfile.h"
 #include "auth.h"  #include "auth.h"
 #include "ssh2.h"  #include "ssh2.h"
 #include "xmalloc.h"  
 #include "log.h"  #include "log.h"
 #include "dispatch.h"  #include "dispatch.h"
   #include "buffer.h"
 #include "servconf.h"  #include "servconf.h"
 #include "packet.h"  #include "packet.h"
   #include "ssh-gss.h"
 #include "monitor_wrap.h"  #include "monitor_wrap.h"
   
 #include "ssh-gss.h"  
   
 extern ServerOptions options;  extern ServerOptions options;
   
 static void input_gssapi_token(int type, u_int32_t plen, void *ctxt);  static void input_gssapi_token(int type, u_int32_t plen, void *ctxt);
Line 291 
Line 291 
         userauth_gssapi,          userauth_gssapi,
         &options.gss_authentication          &options.gss_authentication
 };  };
   
 #endif /* GSSAPI */  

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15