diff options
author | Volker Lendecke <vl@samba.org> | 2018-12-09 11:52:16 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2018-12-11 00:40:29 +0100 |
commit | a68055528644fbbbe94487385e23aaa70b0f3afa (patch) | |
tree | fa1eed56af244188b42f214a182530a50dfda3a7 | |
parent | f7516971b566f6099abcaf4e6ad42102cc6c9b07 (diff) | |
download | samba-a68055528644fbbbe94487385e23aaa70b0f3afa.tar.gz |
pdb_ldap: Fix typos
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
-rw-r--r-- | source3/passdb/pdb_ldap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/passdb/pdb_ldap.c b/source3/passdb/pdb_ldap.c index 62f899314de..e75f0bc4e7c 100644 --- a/source3/passdb/pdb_ldap.c +++ b/source3/passdb/pdb_ldap.c @@ -5159,7 +5159,7 @@ static bool ldapsam_uid_to_sid(struct pdb_methods *methods, uid_t uid, } if (!string_to_sid(&user_sid, user_sid_string)) { - DEBUG(3, ("Error calling sid_string_talloc for sid '%s'\n", + DEBUG(3, ("Error calling string_to_sid for sid '%s'\n", user_sid_string)); goto done; } @@ -5226,7 +5226,7 @@ static bool ldapsam_gid_to_sid(struct pdb_methods *methods, gid_t gid, } if (!string_to_sid(&group_sid, group_sid_string)) { - DEBUG(3, ("Error calling sid_string_talloc for sid '%s'\n", + DEBUG(3, ("Error calling string_to_sid for sid '%s'\n", group_sid_string)); goto done; } |