From: Volker Lendecke Date: Sun, 9 Dec 2018 10:52:16 +0000 (+0100) Subject: pdb_ldap: Fix typos X-Git-Tag: tdb-1.3.17~393 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a68055528644fbbbe94487385e23aaa70b0f3afa;p=thirdparty%2Fsamba.git pdb_ldap: Fix typos Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- 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; }