1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Merge of new sid type (SID_NAME_COMPUTER) and tidyup.

(This used to be commit c91cf2b38d)
This commit is contained in:
Tim Potter 2003-04-14 02:26:41 +00:00
parent e8a0a3d357
commit 886d4e6fe2
2 changed files with 2 additions and 2 deletions

View File

@ -240,7 +240,6 @@ typedef struct nttime_info
/* SID Types */
enum SID_NAME_USE
{
SID_NAME_USE_NONE = 0,/* NOTUSED */
SID_NAME_USER = 1, /* user */
SID_NAME_DOM_GRP = 2, /* domain group */
SID_NAME_DOMAIN = 3, /* domain: don't know what this is */

View File

@ -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)