summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_util.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2007-12-15 21:58:28 +0100
committerVolker Lendecke <vl@samba.org>2007-12-15 22:09:36 +0100
commitd899b8c56ad6556baf2d2374704cc8cd1b15d5ad (patch)
tree288cfe473f6fecdd417aca406dad4ef925ec26c8 /source3/winbindd/winbindd_util.c
parent7b01537679d4d4f1408634fe63c64c144f9d9519 (diff)
downloadsamba-d899b8c56ad6556baf2d2374704cc8cd1b15d5ad.tar.gz
samba-d899b8c56ad6556baf2d2374704cc8cd1b15d5ad.tar.bz2
samba-d899b8c56ad6556baf2d2374704cc8cd1b15d5ad.zip
Use sid_to_string directly
It seems a bit pointless to do a fstrcpy(dst, sid_string_static(src)) (This used to be commit c221c246b10e2dbbd54a9af2dc45de2eae237380)
Diffstat (limited to 'source3/winbindd/winbindd_util.c')
-rw-r--r--source3/winbindd/winbindd_util.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/winbindd/winbindd_util.c b/source3/winbindd/winbindd_util.c
index b552aac709..5ac1eb64da 100644
--- a/source3/winbindd/winbindd_util.c
+++ b/source3/winbindd/winbindd_util.c
@@ -668,8 +668,7 @@ enum winbindd_result winbindd_dual_init_connection(struct winbindd_domain *domai
fstrcpy(state->response.data.domain_info.name, domain->name);
fstrcpy(state->response.data.domain_info.alt_name, domain->alt_name);
- fstrcpy(state->response.data.domain_info.sid,
- sid_string_static(&domain->sid));
+ sid_to_string(state->response.data.domain_info.sid, &domain->sid);
state->response.data.domain_info.native_mode
= domain->native_mode;