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:55:43 +1000 |
commit | 340c690d1731fe638bd6afe1fe38c7a7977b9687 (patch) | |
tree | e3de99a27191c37d7ed3ee26d9cffcdeeb52f719 /librpc | |
parent | 2e573a7cf4c2c4f75182d2266c998ff13edce5a5 (diff) | |
download | samba-340c690d1731fe638bd6afe1fe38c7a7977b9687.tar.gz samba-340c690d1731fe638bd6afe1fe38c7a7977b9687.tar.bz2 samba-340c690d1731fe638bd6afe1fe38c7a7977b9687.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
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/gen_ndr/security.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) |