diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-12-31 14:31:13 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-12-31 14:31:13 +0000 |
commit | c4d928e55fe99a3a1c4e53508a44949f92d74219 (patch) | |
tree | 594122fa61fe0d39bb52b700ccba1dd0401c83a1 /source/libads | |
parent | 65e857b36e170e3ecd78bf6695ae73342e9c04cd (diff) | |
download | samba-c4d928e55fe99a3a1c4e53508a44949f92d74219.tar.gz samba-c4d928e55fe99a3a1c4e53508a44949f92d74219.tar.xz samba-c4d928e55fe99a3a1c4e53508a44949f92d74219.zip |
cope with systems that don't have full gssapi libs
Diffstat (limited to 'source/libads')
-rw-r--r-- | source/libads/ads_status.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/libads/ads_status.c b/source/libads/ads_status.c index 51be9c806a0..a28fd7b6713 100644 --- a/source/libads/ads_status.c +++ b/source/libads/ads_status.c @@ -69,6 +69,8 @@ const char *ads_errstr(ADS_STATUS status) #ifdef HAVE_KRB5 case ADS_ERROR_KRB5: return error_message(status.rc); +#endif +#ifdef HAVE_GSSAPI case ADS_ERROR_GSS: { gss_buffer_desc msg1, msg2; |