diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-05-26 14:43:49 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-05-27 07:58:07 +1000 |
commit | 8c871706e0c6cf42e06f33b7bfeed7fb5a7d4ff0 (patch) | |
tree | e2ebf2dd553a9b8a4e3567d214f59ee4acd06213 | |
parent | b21656f09a1127f10de75b9cc098e07cf3135d3c (diff) | |
download | samba-8c871706e0c6cf42e06f33b7bfeed7fb5a7d4ff0.tar.gz samba-8c871706e0c6cf42e06f33b7bfeed7fb5a7d4ff0.tar.xz samba-8c871706e0c6cf42e06f33b7bfeed7fb5a7d4ff0.zip |
Add DOMAIN_RID_KRBTGT define to security.idl
-rw-r--r-- | librpc/gen_ndr/security.h | 1 | ||||
-rw-r--r-- | librpc/idl/security.idl | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/librpc/gen_ndr/security.h b/librpc/gen_ndr/security.h index f90dd413a8f..16635f0bb87 100644 --- a/librpc/gen_ndr/security.h +++ b/librpc/gen_ndr/security.h @@ -126,6 +126,7 @@ #define DOMAIN_RID_GUEST ( 501 ) #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 ) diff --git a/librpc/idl/security.idl b/librpc/idl/security.idl index 825ce96d712..9e47ff45fce 100644 --- a/librpc/idl/security.idl +++ b/librpc/idl/security.idl @@ -226,6 +226,7 @@ interface security const int DOMAIN_RID_GUEST = 501; 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; |