1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-03 04:22:47 -05:00

At some point recently, Unix PuTTY started suffering build errors

using -DNO_GSSAPI. Move some ifdefs around so it stops.

[originally from svn r8370]
This commit is contained in:
Simon Tatham
2008-12-02 18:18:32 +00:00
parent 5fec8bd897
commit e6fee2636d
2 changed files with 10 additions and 2 deletions

View File

@ -1,11 +1,11 @@
#ifndef NO_GSSAPI
#include <string.h>
#include <gssapi/gssapi.h>
#include "putty.h"
#include "sshgss.h"
#include "misc.h"
#ifndef NO_GSSAPI
static gss_OID_desc putty_gss_mech_krb5_desc =
{ 9, (void *)"\x2a\x86\x48\x86\xf7\x12\x01\x02\x02" };
static gss_OID const putty_gss_mech_krb5 = &putty_gss_mech_krb5_desc;