1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s4-ldb: server side sort args are const char *

This commit is contained in:
Andrew Tridgell 2009-09-22 17:06:38 -07:00
parent 1dfcd4c22c
commit 83bef7d047

View File

@ -646,8 +646,8 @@ struct ldb_extended_dn_control {
};
struct ldb_server_sort_control {
char *attributeName;
char *orderingRule;
const char *attributeName;
const char *orderingRule;
int reverse;
};