diff options
author | Volker Lendecke <vl@samba.org> | 2017-04-23 18:47:25 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2017-05-03 20:00:25 +0200 |
commit | 1e7bec40d103a003905dd6a161366753ff8a5c40 (patch) | |
tree | b47730e5f881c221974ce0b15390010eff5a2e8a /source3/lib | |
parent | b23728ac736238c5e20cdf5fd42140aa0d2c9761 (diff) | |
download | samba-1e7bec40d103a003905dd6a161366753ff8a5c40.tar.gz |
lib: Fix a comment
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Wed May 3 20:00:25 CEST 2017 on sn-devel-144
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/ldap_escape.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/ldap_escape.c b/source3/lib/ldap_escape.c index f8d4afcec75..fa75dabcae6 100644 --- a/source3/lib/ldap_escape.c +++ b/source3/lib/ldap_escape.c @@ -28,8 +28,8 @@ * * @param s The input string * - * @return A string allocated with malloc(), containing the escaped string, - * and to be free()ed by the caller. + * @return A string allocated with talloc(), containing the escaped string, + * and to be talloc_free()ed by the caller. **/ char *escape_ldap_string(TALLOC_CTX *mem_ctx, const char *s) |