diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-10-17 22:30:22 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-10-22 10:02:43 +1100 |
commit | d120e7ebde71c0ab694e1e7c0002dd1f80c05f0a (patch) | |
tree | f2051c6ba0728623dbf48414ed8aff9c2fd5b01d | |
parent | 0defcfb4f7d6ff82144f9673203777d17d84e53d (diff) | |
download | samba-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>
-rw-r--r-- | source4/lib/ldb/modules/sort.c | 4 |
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; |