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 | f6b962fba37a1ac105301d699708e541ce34d3b4 (patch) | |
tree | 74ae24de51a3b374e616459874e8cfab9bda99a0 /source3/smbd | |
parent | bd8e916cb520d89a14a1cd13b2b261253729ac9b (diff) | |
download | samba-f6b962fba37a1ac105301d699708e541ce34d3b4.tar.gz samba-f6b962fba37a1ac105301d699708e541ce34d3b4.tar.bz2 samba-f6b962fba37a1ac105301d699708e541ce34d3b4.zip |
fixed some krb5 ifdefs
(This used to be commit 23ef22f11700bbaa5778a9678a990a2b041fcefe)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/sesssetup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c index f9d52e9be4..863a509042 100644 --- a/source3/smbd/sesssetup.c +++ b/source3/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); |