[SCM] Samba Shared Repository - branch master updated

David Disseldorp ddiss at samba.org
Tue Feb 6 01:48:02 UTC 2018


The branch, master has been updated
       via  859698d libads: Fix the build --without-ads
      from  0c3348f dbcheck: skip find_missing_forward_links_from_backlinks() if the db has the sortedLinks feature

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 859698d29b547217356851094ed8188236e717b6
Author: Volker Lendecke <vl at samba.org>
Date:   Sat Feb 3 07:07:24 2018 +0100

    libads: Fix the build --without-ads
    
    Signed-off-by: Volker Lendecke <vl at samba.org>
    Reviewed-by: David Disseldorp <ddiss at samba.org>
    
    Autobuild-User(master): David Disseldorp <ddiss at samba.org>
    Autobuild-Date(master): Tue Feb  6 02:47:44 CET 2018 on sn-devel-144

-----------------------------------------------------------------------

Summary of changes:
 source3/libads/kerberos_keytab.c | 4 ++++
 1 file changed, 4 insertions(+)


Changeset truncated at 500 lines:

diff --git a/source3/libads/kerberos_keytab.c b/source3/libads/kerberos_keytab.c
index ffd100c..37ac7ba 100644
--- a/source3/libads/kerberos_keytab.c
+++ b/source3/libads/kerberos_keytab.c
@@ -640,7 +640,11 @@ int ads_keytab_list(const char *keytab_name)
 	}
 
 	if (keytab_name == NULL) {
+#ifdef HAVE_ADS
 		ret = ads_keytab_open(context, &keytab);
+#else
+		ret = ENOENT;
+#endif
 	} else {
 		ret = smb_krb5_kt_open(context, keytab_name, False, &keytab);
 	}


-- 
Samba Shared Repository



More information about the samba-cvs mailing list