From 2e573a7cf4c2c4f75182d2266c998ff13edce5a5 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 29 May 2009 10:34:00 +1000 Subject: Fix incorrect RID for KRBTGT. (was incorectly 514, should be 502) Requires recompile of source4/kdc/* Found by Andrew Kroeger Andrew Bartlett --- librpc/idl/security.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librpc/idl/security.idl b/librpc/idl/security.idl index 9e47ff45fc..941883f644 100644 --- a/librpc/idl/security.idl +++ b/librpc/idl/security.idl @@ -224,9 +224,9 @@ interface security const int DOMAIN_RID_LOGON = 9; const int DOMAIN_RID_ADMINISTRATOR = 500; const int DOMAIN_RID_GUEST = 501; + const int DOMAIN_RID_KRBTGT = 502; const int DOMAIN_RID_ADMINS = 512; const int DOMAIN_RID_USERS = 513; - const int DOMAIN_RID_KRBTGT = 514; const int DOMAIN_RID_DOMAIN_MEMBERS = 515; const int DOMAIN_RID_DCS = 516; const int DOMAIN_RID_CERT_ADMINS = 517; -- cgit