From fb3555c483bf3f6af71355965e9e07c149e2e5d1 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 9 May 2008 12:52:17 -0400 Subject: For some unknown reason the sort control returns values sorted in reverse. Ask for inverse order to get them straight ... --- ipa-server/ipa-slapi-plugins/dna/dna.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ipa-server') diff --git a/ipa-server/ipa-slapi-plugins/dna/dna.c b/ipa-server/ipa-slapi-plugins/dna/dna.c index 95d06262e..ced18cad8 100644 --- a/ipa-server/ipa-slapi-plugins/dna/dna.c +++ b/ipa-server/ipa-slapi-plugins/dna/dna.c @@ -760,6 +760,8 @@ static int dna_dn_is_config(char *dn) return ret; } +#define DNA_LDAP_TAG_SK_REVERSE 0x81L + static LDAPControl *dna_build_sort_control(const char *attr) { LDAPControl *ctrl; @@ -770,7 +772,7 @@ static LDAPControl *dna_build_sort_control(const char *attr) if (NULL == ber) return NULL; - rc = ber_printf(ber, "{{s}}", attr); + rc = ber_printf(ber, "{{stb}}", attr, DNA_LDAP_TAG_SK_REVERSE, 1); if (-1 == rc) { ber_free(ber, 1); return NULL; -- cgit