summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-03-15 23:16:40 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-03-15 23:16:40 +0000
commit0dca6fab27039a8874c4b3ab0da5401975344fa9 (patch)
tree634f24dc45f7ef516d9c10782e5a5471f14ee4bc /source3/include
parent4b6b03e1838a8cf06c56b6afdaa00402a8a7b83d (diff)
downloadsamba-0dca6fab27039a8874c4b3ab0da5401975344fa9.tar.gz
samba-0dca6fab27039a8874c4b3ab0da5401975344fa9.tar.bz2
samba-0dca6fab27039a8874c4b3ab0da5401975344fa9.zip
A hack to get us building on a slightly older heimdal kerberos. It appears
that we don't need this flag - heimdal's internal password change routines don't set it. Andrew Bartlett (This used to be commit 069825bd78f2bf125e8a4e72933da924d393f5a5)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/ads.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/include/ads.h b/source3/include/ads.h
index f90983e405..07bf6e4b3b 100644
--- a/source3/include/ads.h
+++ b/source3/include/ads.h
@@ -213,3 +213,10 @@ typedef void **ADS_MODLIST;
#if defined(HAVE_ENCTYPE_ARCFOUR_HMAC_MD5)
#define ENCTYPE_ARCFOUR_HMAC ENCTYPE_ARCFOUR_HMAC_MD5
#endif
+
+/* The older versions of heimdal that don't have this
+ define don't seem to use it anyway. I'm told they
+ always use a subkey */
+#ifndef AP_OPTS_USE_SUBKEY
+#define AP_OPTS_USE_SUBKEY 0
+#endif