summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2009-10-17 22:30:22 +0200
committerAndrew Bartlett <abartlet@samba.org>2009-10-22 10:02:43 +1100
commitd120e7ebde71c0ab694e1e7c0002dd1f80c05f0a (patch)
treef2051c6ba0728623dbf48414ed8aff9c2fd5b01d /source4
parent0defcfb4f7d6ff82144f9673203777d17d84e53d (diff)
downloadsamba-d120e7ebde71c0ab694e1e7c0002dd1f80c05f0a.tar.gz
samba-d120e7ebde71c0ab694e1e7c0002dd1f80c05f0a.tar.bz2
samba-d120e7ebde71c0ab694e1e7c0002dd1f80c05f0a.zip
s4:ldb_sort - Add some more "const"
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/ldb/modules/sort.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/modules/sort.c b/source4/lib/ldb/modules/sort.c
index f0aea77018..5d1431d739 100644
--- a/source4/lib/ldb/modules/sort.c
+++ b/source4/lib/ldb/modules/sort.c
@@ -44,8 +44,8 @@ struct opaque {
struct sort_context {
struct ldb_module *module;
- char *attributeName;
- char *orderingRule;
+ const char *attributeName;
+ const char *orderingRule;
int reverse;
struct ldb_request *req;