diff options
author | Simo Sorce <idra@samba.org> | 2003-05-02 08:03:25 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2003-05-02 08:03:25 +0000 |
commit | e87f9a29b7e695a15a6cedb36e4a48821086d3e8 (patch) | |
tree | 1e12ed9d98c4b2ceb57644ff8a5daeb2ce081ee6 /source3/sam | |
parent | a5e8ba3c76c8a340d29299d43529ea9fef2dad59 (diff) | |
download | samba-e87f9a29b7e695a15a6cedb36e4a48821086d3e8.tar.gz samba-e87f9a29b7e695a15a6cedb36e4a48821086d3e8.tar.bz2 samba-e87f9a29b7e695a15a6cedb36e4a48821086d3e8.zip |
shouldn't wellknown group be well.. ..WKN_GRP ?
make a new sam_Account contain our domain by default, windows will complain
on logon otherwise.
fix stupid typo in idmap_util.c
(This used to be commit 21701876dc6c59ebfc51be708a98226a00a764e0)
Diffstat (limited to 'source3/sam')
-rw-r--r-- | source3/sam/idmap_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/sam/idmap_util.c b/source3/sam/idmap_util.c index ff581d91bc..5d7adcdc04 100644 --- a/source3/sam/idmap_util.c +++ b/source3/sam/idmap_util.c @@ -133,7 +133,7 @@ NTSTATUS uid_to_sid(DOM_SID *sid, uid_t uid) id.uid = uid; if (NT_STATUS_IS_ERR(ret = idmap_get_sid_from_id(sid, id, flags))) { - DEBUG(10, ("uid_to_sid: Failed to map uid = [%s]\n", (unsigned int)uid)); + DEBUG(10, ("uid_to_sid: Failed to map uid = [%u]\n", (unsigned int)uid)); if (flags & ID_NOMAP) { sid_copy(sid, get_global_sam_sid()); sid_append_rid(sid, fallback_pdb_uid_to_user_rid(uid)); |