diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-01-14 12:03:27 +1100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-01-21 01:28:53 +0100 |
commit | e175d25c68a83b6caf675cdc7f82e12cb5cad1f3 (patch) | |
tree | b63ba353c1d099fa51b0ec74da3dd5eb51ecaec1 | |
parent | 58916c047d4e0441c878489f14581993bc65f130 (diff) | |
download | samba-e175d25c68a83b6caf675cdc7f82e12cb5cad1f3.tar.gz |
s3-libsmb: Always allow SMB_TRANS_ENC_GSS to be defined
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Sat Jan 21 01:28:54 CET 2012 on sn-devel-104
-rw-r--r-- | libcli/smb/smb_seal.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libcli/smb/smb_seal.h b/libcli/smb/smb_seal.h index bcd4a9568e3..081208e3340 100644 --- a/libcli/smb/smb_seal.h +++ b/libcli/smb/smb_seal.h @@ -22,10 +22,8 @@ /* Transport encryption state. */ enum smb_trans_enc_type { - SMB_TRANS_ENC_NTLM -#if defined(HAVE_GSSAPI) && defined(HAVE_KRB5) - , SMB_TRANS_ENC_GSS -#endif + SMB_TRANS_ENC_NTLM, + SMB_TRANS_ENC_GSS }; struct smb_trans_enc_state { |