diff options
author | Volker Lendecke <vl@samba.org> | 2007-12-15 22:47:30 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2007-12-15 22:47:30 +0100 |
commit | 2e07c2ade89f4ff281c61f74cb88e09990cf5f46 (patch) | |
tree | a1fb43117e5b3966c8113d47c37a1bdf1e8ee30b /source3/libads | |
parent | 79cd97cc3f496f781d809c1ab619afa2cc07293d (diff) | |
download | samba-2e07c2ade89f4ff281c61f74cb88e09990cf5f46.tar.gz samba-2e07c2ade89f4ff281c61f74cb88e09990cf5f46.tar.bz2 samba-2e07c2ade89f4ff281c61f74cb88e09990cf5f46.zip |
s/sid_to_string/sid_to_fstring/
least surprise for callers
(This used to be commit eb523ba77697346a365589101aac379febecd546)
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index c3dd9154de..e9124a387c 100644 --- a/source3/libads/ldap.c +++ b/source3/libads/ldap.c @@ -1849,7 +1849,7 @@ static void dump_sid(ADS_STRUCT *ads, const char *field, struct berval **values) DOM_SID sid; fstring tmp; sid_parse(values[i]->bv_val, values[i]->bv_len, &sid); - printf("%s: %s\n", field, sid_to_string(tmp, &sid)); + printf("%s: %s\n", field, sid_to_fstring(tmp, &sid)); } } |