diff options
author | Tim Potter <tpot@samba.org> | 2003-04-14 02:26:41 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-04-14 02:26:41 +0000 |
commit | 886d4e6fe2b4fc4a2c06014abdc2d796936bbcac (patch) | |
tree | 21d3912b77603c0aa0119b4d3373c7cc0c6f0b16 /source3/lib/util_sid.c | |
parent | e8a0a3d357d2aa714df44a57f2dd5103d8e1d02c (diff) | |
download | samba-886d4e6fe2b4fc4a2c06014abdc2d796936bbcac.tar.gz |
Merge of new sid type (SID_NAME_COMPUTER) and tidyup.
(This used to be commit c91cf2b38df9f51dd6cb46f0742e1c57bb36b508)
Diffstat (limited to 'source3/lib/util_sid.c')
-rw-r--r-- | source3/lib/util_sid.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/util_sid.c b/source3/lib/util_sid.c index 824987f1892..9e5ae6b4415 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) |