diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-01-24 18:40:53 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:51:27 -0500 |
commit | 0e7fed29ec24f5de1709a41f64998a90b51a1ec7 (patch) | |
tree | 821f7a2ba72cca24cf86b1618b428463d43b0fef /source4/lib/ldb/include/ldb.h | |
parent | ad35031fd2090b97a214d7e8e5cb79ce994b378e (diff) | |
download | samba-0e7fed29ec24f5de1709a41f64998a90b51a1ec7.tar.gz samba-0e7fed29ec24f5de1709a41f64998a90b51a1ec7.tar.bz2 samba-0e7fed29ec24f5de1709a41f64998a90b51a1ec7.zip |
r13114: remove 'const' and make clear what the parameters are for
metze
(This used to be commit 317a3eefeef6b9da565a215ba152d829059c6f14)
Diffstat (limited to 'source4/lib/ldb/include/ldb.h')
-rw-r--r-- | source4/lib/ldb/include/ldb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/include/ldb.h b/source4/lib/ldb/include/ldb.h index 770d23c638..9a637ff9d5 100644 --- a/source4/lib/ldb/include/ldb.h +++ b/source4/lib/ldb/include/ldb.h @@ -362,7 +362,7 @@ struct ldb_attrib_handler { #define LDB_SYNTAX_OBJECTCLASS "LDB_SYNTAX_OBJECTCLASS" /* sorting helpers */ -typedef int (*ldb_qsort_cmp_fn_t) (const void *, const void *, const void *); +typedef int (*ldb_qsort_cmp_fn_t) (void *v1, void *v2, void *opaque); /** OID for the paged results control. This control is included in the |