From ac6fcaa955ccb6e7cbd7be21cf06a474519e248f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Julio=20S=C3=A1nchez=20Fern=C3=A1ndez?= Date: Fri, 9 Jul 1999 13:20:53 +0000 Subject: [PATCH] Revert the definition of the f_un_sub choice in the filter for the time being. Really, this should be done, but it makes too great a mess, so we will leave it for later. --- servers/slapd/slap.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/servers/slapd/slap.h b/servers/slapd/slap.h index 57eb1f6da5..23a6aea331 100644 --- a/servers/slapd/slap.h +++ b/servers/slapd/slap.h @@ -113,7 +113,9 @@ typedef struct filter { /* substrings */ struct sub { char *f_un_sub_type; - struct berval f_un_sub_value; + char *f_un_sub_initial; + char **f_un_sub_any; + char *f_un_sub_final; } f_un_sub; } f_un; #define f_type f_un.f_un_type @@ -131,7 +133,9 @@ typedef struct filter { #define f_list f_un.f_un_complex #define f_sub f_un.f_un_sub #define f_sub_type f_un.f_un_sub.f_un_sub_type -#define f_sub_value f_un.f_un_sub.f_un_sub_value +#define f_sub_initial f_un.f_un_sub.f_un_sub_initial +#define f_sub_any f_un.f_un_sub.f_un_sub_any +#define f_sub_final f_un.f_un_sub.f_un_sub_final struct filter *f_next; } Filter; -- 2.39.2