summaryrefslogtreecommitdiff
path: root/source3/lib/util_sid.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2007-10-08 13:31:08 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:31:16 -0500
commit52ef68ad4b2cdf07a7b82cc87ffb692741bbda46 (patch)
treedc823b737411aa57fb26d10b9a872da907ffa9e0 /source3/lib/util_sid.c
parent3ddbc3deb287a33b49d5898310b357007cffd68b (diff)
downloadsamba-52ef68ad4b2cdf07a7b82cc87ffb692741bbda46.tar.gz
samba-52ef68ad4b2cdf07a7b82cc87ffb692741bbda46.tar.bz2
samba-52ef68ad4b2cdf07a7b82cc87ffb692741bbda46.zip
r25575: Document S-1-5-12 (restriced code sid).
Guenther (This used to be commit 109b09edef4bcad06c3b850edf7db74419c3ad78)
Diffstat (limited to 'source3/lib/util_sid.c')
-rw-r--r--source3/lib/util_sid.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/source3/lib/util_sid.c b/source3/lib/util_sid.c
index 85cb96bd60..498919876c 100644
--- a/source3/lib/util_sid.c
+++ b/source3/lib/util_sid.c
@@ -25,7 +25,8 @@
#include "includes.h"
/*
- * Some useful sids
+ * Some useful sids, more well known sids can be found at
+ * http://support.microsoft.com/kb/243330/EN-US/
*/
@@ -43,6 +44,11 @@ const DOM_SID global_sid_NULL = /* NULL sid */
{ 1, 1, {0,0,0,0,0,0}, {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}};
const DOM_SID global_sid_Authenticated_Users = /* All authenticated rids */
{ 1, 1, {0,0,0,0,0,5}, {11,0,0,0,0,0,0,0,0,0,0,0,0,0,0}};
+#if 0
+/* for documentation */
+const DOM_SID global_sid_Restriced = /* Restriced Code */
+{ 1, 1, {0,0,0,0,0,5}, {12,0,0,0,0,0,0,0,0,0,0,0,0,0,0}};
+#endif
const DOM_SID global_sid_Network = /* Network rids */
{ 1, 1, {0,0,0,0,0,5}, {2,0,0,0,0,0,0,0,0,0,0,0,0,0,0}};