From 340c690d1731fe638bd6afe1fe38c7a7977b9687 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/gen_ndr/security.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librpc/gen_ndr/security.h b/librpc/gen_ndr/security.h index 16635f0bb8..9db2108f82 100644 --- a/librpc/gen_ndr/security.h +++ b/librpc/gen_ndr/security.h @@ -124,9 +124,9 @@ #define DOMAIN_RID_LOGON ( 9 ) #define DOMAIN_RID_ADMINISTRATOR ( 500 ) #define DOMAIN_RID_GUEST ( 501 ) +#define DOMAIN_RID_KRBTGT ( 502 ) #define DOMAIN_RID_ADMINS ( 512 ) #define DOMAIN_RID_USERS ( 513 ) -#define DOMAIN_RID_KRBTGT ( 514 ) #define DOMAIN_RID_DOMAIN_MEMBERS ( 515 ) #define DOMAIN_RID_DCS ( 516 ) #define DOMAIN_RID_CERT_ADMINS ( 517 ) -- cgit