svn commit: samba r15497 - in branches/SAMBA_4_0/source/kdc: .

abartlet at samba.org abartlet at samba.org
Sun May 7 17:55:21 GMT 2006


Author: abartlet
Date: 2006-05-07 17:55:20 +0000 (Sun, 07 May 2006)
New Revision: 15497

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15497

Log:
I'm not really sure this is correct in terms of how we should be responding to 

krbtgt/MY.REALM at MY.REALM

TGS ticket requests, but for the moment, these are still marked as
'server' requests by the kerberos5.c caller.

Andrew Bartlett

Modified:
   branches/SAMBA_4_0/source/kdc/hdb-ldb.c


Changeset:
Modified: branches/SAMBA_4_0/source/kdc/hdb-ldb.c
===================================================================
--- branches/SAMBA_4_0/source/kdc/hdb-ldb.c	2006-05-07 17:40:52 UTC (rev 15496)
+++ branches/SAMBA_4_0/source/kdc/hdb-ldb.c	2006-05-07 17:55:20 UTC (rev 15497)
@@ -810,6 +810,10 @@
 		if (ret != HDB_ERR_NOENTRY) {
 			return ret;
 		}
+		ret = LDB_fetch_krbtgt(context, db, mem_ctx, principal, flags, entry_ex);
+		if (ret != HDB_ERR_NOENTRY) {
+			return ret;
+		}
 	}
 	if (flags & HDB_F_GET_KRBTGT) {
 		ret = LDB_fetch_krbtgt(context, db, mem_ctx, principal, flags, entry_ex);



More information about the samba-cvs mailing list