diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-11-28 23:54:07 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-11-28 23:54:07 +0000 |
commit | 23ef22f11700bbaa5778a9678a990a2b041fcefe (patch) | |
tree | f6965d762cbf1fdef3bb40a6c3f95a573d70c9a5 /source/smbd/sesssetup.c | |
parent | c60aa6c06f376684b6d6d9a2c14305ca9f4657ef (diff) | |
download | samba-23ef22f11700bbaa5778a9678a990a2b041fcefe.tar.gz samba-23ef22f11700bbaa5778a9678a990a2b041fcefe.tar.xz samba-23ef22f11700bbaa5778a9678a990a2b041fcefe.zip |
fixed some krb5 ifdefs
Diffstat (limited to 'source/smbd/sesssetup.c')
-rw-r--r-- | source/smbd/sesssetup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/smbd/sesssetup.c b/source/smbd/sesssetup.c index f9d52e9be40..863a5090423 100644 --- a/source/smbd/sesssetup.c +++ b/source/smbd/sesssetup.c @@ -64,7 +64,7 @@ static NTSTATUS check_guest_password(auth_serversupplied_info **server_info) } -#if HAVE_KRB5 +#ifdef HAVE_KRB5 /**************************************************************************** reply to a session setup spnego negotiate packet for kerberos ****************************************************************************/ @@ -201,7 +201,7 @@ static int reply_spnego_negotiate(connection_struct *conn, } DEBUG(3,("Got secblob of size %d\n", secblob.length)); -#if HAVE_KRB5 +#ifdef HAVE_KRB5 if (got_kerberos) { int ret = reply_spnego_kerberos(conn, inbuf, outbuf, length, bufsize, &secblob); |