summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-03-20 00:32:44 +0000
committerTim Potter <tpot@samba.org>2003-03-20 00:32:44 +0000
commit2f13a74671c62a2861979ce2ab33ad1363bdbcf7 (patch)
tree70d56bfe0269add41c47decfac059d53f48407eb /source3/lib
parentc775678250003ef2d9b3db4895a6654dd513b203 (diff)
downloadsamba-2f13a74671c62a2861979ce2ab33ad1363bdbcf7.tar.gz
samba-2f13a74671c62a2861979ce2ab33ad1363bdbcf7.tar.bz2
samba-2f13a74671c62a2861979ce2ab33ad1363bdbcf7.zip
Cleanup bogus initialisation in SID_NAME_USE enum.
Added new sid type = 9 for "computer" from MSDN. (This used to be commit 45929d126932e5cac5a23fe76d28a4fa05b54b77)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util_sid.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/util_sid.c b/source3/lib/util_sid.c
index 81d17ae3f2..dfd3b312e0 100644
--- a/source3/lib/util_sid.c
+++ b/source3/lib/util_sid.c
@@ -91,8 +91,9 @@ static const struct {
{SID_NAME_DELETED, "Deleted Account"},
{SID_NAME_INVALID, "Invalid Account"},
{SID_NAME_UNKNOWN, "UNKNOWN"},
+ {SID_NAME_COMPUTER, "Computer"},
- {SID_NAME_USE_NONE, NULL}
+ {0, NULL}
};
const char *sid_type_lookup(uint32 sid_type)