* update to 4.11.4 (python3 version) * re-enable AD-DC option * add 'samba_nice' UCI option via "config procd 'extra'" * restructure buildsteps (don't rely on waf --targets logic) * move quota option into VFS * move ACL option into AC-DC * add more admin-tools * use rpath_install for libs * fix rpath + rstrip extra: * add rpcsvc-proto package _(don't rely on nfs-utils/host for headers, rpcgen anymore)_ * add libasn1 host build _(samba4 is looking for the bins)_ Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
22 lines
822 B
Diff
22 lines
822 B
Diff
diff --git a/source4/dsdb/samdb/ldb_modules/count_attrs.c b/source4/dsdb/samdb/ldb_modules/count_attrs.c
|
|
index b0d1b22..29f1b94 100644
|
|
--- a/source4/dsdb/samdb/ldb_modules/count_attrs.c
|
|
+++ b/source4/dsdb/samdb/ldb_modules/count_attrs.c
|
|
@@ -222,7 +222,7 @@ static const char **get_sorted_attrs(TALLOC_CTX *mem_ctx,
|
|
attrs[i] = a;
|
|
}
|
|
|
|
- qsort(attrs, n_attrs, sizeof(char *), (__compar_fn_t)strcasecmp_ptr);
|
|
+ qsort(attrs, n_attrs, sizeof(char *), (int (*)(const void *, const void *))strcasecmp_ptr);
|
|
return attrs;
|
|
}
|
|
|
|
@@ -313,7 +313,7 @@ static int count_attrs_search_callback(struct ldb_request *req,
|
|
}
|
|
|
|
qsort(found_attrs, msg->num_elements, sizeof(char *),
|
|
- (__compar_fn_t)strcasecmp_ptr);
|
|
+ (int (*)(const void *, const void *))strcasecmp_ptr);
|
|
|
|
|
|
/* find and report duplicates */
|