summaryrefslogtreecommitdiffstats
path: root/source/smbd/sesssetup.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-11-28 23:54:07 +0000
committerAndrew Tridgell <tridge@samba.org>2001-11-28 23:54:07 +0000
commit23ef22f11700bbaa5778a9678a990a2b041fcefe (patch)
treef6965d762cbf1fdef3bb40a6c3f95a573d70c9a5 /source/smbd/sesssetup.c
parentc60aa6c06f376684b6d6d9a2c14305ca9f4657ef (diff)
downloadsamba-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.c4
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);