1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-03 01:18:10 +03:00

ldb: comment for ldb_dn_compare_base

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Douglas Bagnall 2024-04-10 16:48:39 +12:00 committed by Andrew Bartlett
parent 6229feab74
commit a9eaf8a3ab

View File

@ -1038,7 +1038,11 @@ char *ldb_dn_alloc_casefold(TALLOC_CTX *mem_ctx, struct ldb_dn *dn)
/* Determine if dn is below base, in the ldap tree. Used for
* evaluating a subtree search.
* 0 if they match, otherwise non-zero
*
* 0 if they match, otherwise non-zero.
*
* This is not for use in a qsort()-like function, as the comparison
* is not symmetric.
*/
int ldb_dn_compare_base(struct ldb_dn *base, struct ldb_dn *dn)