]> git.sur5r.net Git - openldap/commitdiff
Revert the definition of the f_un_sub choice in the filter for the time
authorJulio Sánchez Fernández <jsanchez@openldap.org>
Fri, 9 Jul 1999 13:20:53 +0000 (13:20 +0000)
committerJulio Sánchez Fernández <jsanchez@openldap.org>
Fri, 9 Jul 1999 13:20:53 +0000 (13:20 +0000)
being.  Really, this should be done, but it makes too great a mess,
so we will leave it for later.

servers/slapd/slap.h

index 57eb1f6da542de3c4d253220146fa4722203ce17..23a6aea331252af0bee8945839c108df652bd4f0 100644 (file)
@@ -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;