diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-05-29 10:34:00 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-05-29 10:40:22 +1000 |
commit | 2e573a7cf4c2c4f75182d2266c998ff13edce5a5 (patch) | |
tree | 08984af8f02a880da5d2d1cb2a1b25cd23d67294 | |
parent | 9df85a93746d2de0c68c50d634a04e957e8b2c0d (diff) | |
download | samba-2e573a7cf4c2c4f75182d2266c998ff13edce5a5.tar.gz samba-2e573a7cf4c2c4f75182d2266c998ff13edce5a5.tar.bz2 samba-2e573a7cf4c2c4f75182d2266c998ff13edce5a5.zip |
Fix incorrect RID for KRBTGT. (was incorectly 514, should be 502)
Requires recompile of source4/kdc/*
Found by Andrew Kroeger <andrew@id10ts.net>
Andrew Bartlett
-rw-r--r-- | librpc/idl/security.idl | 2 |
1 files changed, 1 insertions, 1 deletions
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; |