From 83bef7d047def0711b0893c6b2a5096b195811ef Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 22 Sep 2009 17:06:38 -0700 Subject: [PATCH] s4-ldb: server side sort args are const char * --- source4/lib/ldb/include/ldb.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source4/lib/ldb/include/ldb.h b/source4/lib/ldb/include/ldb.h index fa531b26f27..a0836960739 100644 --- a/source4/lib/ldb/include/ldb.h +++ b/source4/lib/ldb/include/ldb.h @@ -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; }; -- 2.11.4.GIT