diff options
author | Volker Lendecke <vl@samba.org> | 2007-12-15 21:11:36 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2007-12-15 22:09:36 +0100 |
commit | 900288a2b86abd247f9eb4cd15dc5617a17cfef1 (patch) | |
tree | 4d8f4d5ec29c831932088db74773f9e338e86824 /source3/smbd/service.c | |
parent | f498f661bcd6f2d97d55aa275dcd1eb2cbcda8a4 (diff) | |
download | samba-900288a2b86abd247f9eb4cd15dc5617a17cfef1.tar.gz samba-900288a2b86abd247f9eb4cd15dc5617a17cfef1.tar.xz samba-900288a2b86abd247f9eb4cd15dc5617a17cfef1.zip |
Replace sid_string_static by sid_string_dbg in DEBUGs
(This used to be commit bb35e794ec129805e874ceba882bcc1e84791a09)
Diffstat (limited to 'source3/smbd/service.c')
-rw-r--r-- | source3/smbd/service.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c index e98ce0f8c2a..88ab9f0048c 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -597,7 +597,7 @@ static NTSTATUS find_forced_group(bool force_user, if (!sid_to_gid(&group_sid, &gid)) { DEBUG(10, ("sid_to_gid(%s) for %s failed\n", - sid_string_static(&group_sid), groupname)); + sid_string_dbg(&group_sid), groupname)); goto done; } @@ -885,7 +885,7 @@ static connection_struct *make_connection_snum(int snum, user_struct *vuser, if (!sid_to_gid(sid, &gid)) { DEBUG(10, ("Could not convert SID %s to gid, " "ignoring it\n", - sid_string_static(sid))); + sid_string_dbg(sid))); continue; } if (!add_gid_to_array_unique(conn->mem_ctx, gid, &conn->groups, |