diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-09-22 17:06:38 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-09-22 17:10:06 -0700 |
commit | 83bef7d047def0711b0893c6b2a5096b195811ef (patch) | |
tree | 000b752d61ad3d2f301b17fa162768537ee548c9 /source4/lib/ldb | |
parent | 1dfcd4c22c7627c1474ecf929fa24fb35b381eae (diff) | |
download | samba-83bef7d047def0711b0893c6b2a5096b195811ef.tar.gz samba-83bef7d047def0711b0893c6b2a5096b195811ef.tar.bz2 samba-83bef7d047def0711b0893c6b2a5096b195811ef.zip |
s4-ldb: server side sort args are const char *
Diffstat (limited to 'source4/lib/ldb')
-rw-r--r-- | source4/lib/ldb/include/ldb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/include/ldb.h b/source4/lib/ldb/include/ldb.h index fa531b26f2..a083696073 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; }; |