diff options
author | Jim McDonough <jmcd@samba.org> | 2003-08-27 20:22:12 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2003-08-27 20:22:12 +0000 |
commit | 270a59f7d33cf541a6db91797d5748ec9a17de3a (patch) | |
tree | 2553b0d60843a781f7e6c23ce70ad9dee83b5fb0 /source3/include | |
parent | da0397bd2f1d4e299358a193a5223610571a9ae2 (diff) | |
download | samba-270a59f7d33cf541a6db91797d5748ec9a17de3a.tar.gz samba-270a59f7d33cf541a6db91797d5748ec9a17de3a.tar.bz2 samba-270a59f7d33cf541a6db91797d5748ec9a17de3a.zip |
Fix to properly set AP_OPTS_SUBKEY in heimdal. In MIT it is a #define, but
in heimdal it is an enum. Thanks to Guenther Deschner (gd@suse.de).
With this join will work, but without a keytab, cifs connections will still
fail with heimdal. Fix to come later.
(This used to be commit d30bef4c37e8203c273eb3852215a89348bece7a)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/ads.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/ads.h b/source3/include/ads.h index 0961c9581c..b85ad21fba 100644 --- a/source3/include/ads.h +++ b/source3/include/ads.h @@ -218,6 +218,6 @@ typedef void **ADS_MODLIST; /* 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 +#ifndef HAVE_AP_OPTS_USE_SUBKEY #define AP_OPTS_USE_SUBKEY 0 #endif |