diff options
author | Volker Lendecke <vl@samba.org> | 2007-12-15 21:58:28 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2007-12-15 22:09:36 +0100 |
commit | d899b8c56ad6556baf2d2374704cc8cd1b15d5ad (patch) | |
tree | 288cfe473f6fecdd417aca406dad4ef925ec26c8 /source3/libsmb | |
parent | 7b01537679d4d4f1408634fe63c64c144f9d9519 (diff) | |
download | samba-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/libsmb')
-rw-r--r-- | source3/libsmb/cliquota.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/cliquota.c b/source3/libsmb/cliquota.c index 690da5928c..3c794240bc 100644 --- a/source3/libsmb/cliquota.c +++ b/source3/libsmb/cliquota.c @@ -608,7 +608,7 @@ void dump_ntquota(SMB_NTQUOTA_STRUCT *qt, bool _verbose, bool _numeric, void (*_ if (_sidtostring) { _sidtostring(username_str,&qt->sid,_numeric); } else { - fstrcpy(username_str,sid_string_static(&qt->sid)); + sid_to_string(username_str, &qt->sid); } if (_verbose) { |