diff options
author | Volker Lendecke <vlendec@samba.org> | 2003-06-12 08:22:55 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2003-06-12 08:22:55 +0000 |
commit | 2cd38cd8e8f0a6f2b81adbd5c4b9146335781377 (patch) | |
tree | 5c96d91d321c901c337830937b0c6395512b99c7 /source3 | |
parent | c899e4c8748372de1f9d35ead9e35af5c9e32591 (diff) | |
download | samba-2cd38cd8e8f0a6f2b81adbd5c4b9146335781377.tar.gz samba-2cd38cd8e8f0a6f2b81adbd5c4b9146335781377.tar.bz2 samba-2cd38cd8e8f0a6f2b81adbd5c4b9146335781377.zip |
Fix some misleading debug messages.
(This used to be commit 9c003ae4ff21040b55264f8b4c34bd5956c97dc6)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/auth/auth_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 8e5fc44291..789193c610 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -1029,7 +1029,7 @@ NTSTATUS make_server_info_info3(TALLOC_CTX *mem_ctx, (n_lgroupSIDs + info3->num_groups2 + info3->num_other_sids)); if (!all_group_SIDs) { - DEBUG(0, ("create_nt_token_info3: malloc() failed for DOM_SID list!\n")); + DEBUG(0, ("malloc() failed for DOM_SID list!\n")); SAFE_FREE(lgroupSIDs); return NT_STATUS_NO_MEMORY; } @@ -1043,7 +1043,7 @@ NTSTATUS make_server_info_info3(TALLOC_CTX *mem_ctx, sid_copy(&all_group_SIDs[i+n_lgroupSIDs], &(info3->dom_sid.sid)); if (!sid_append_rid(&all_group_SIDs[i+n_lgroupSIDs], info3->gids[i].g_rid)) { nt_status = NT_STATUS_INVALID_PARAMETER; - DEBUG(3,("create_nt_token_info3: could not append additional group rid 0x%x\n", + DEBUG(3,("could not append additional group rid 0x%x\n", info3->gids[i].g_rid)); SAFE_FREE(lgroupSIDs); return nt_status; |