]> git.sur5r.net Git - openldap/commitdiff
Insert #ifdef SLAPD_ACLGROUPS
authorKurt Zeilenga <kurt@openldap.org>
Tue, 27 Oct 1998 06:34:01 +0000 (06:34 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Tue, 27 Oct 1998 06:34:01 +0000 (06:34 +0000)
servers/slapd/aclparse.c

index e52cbde4100e0e9e9cda8f3eada51c94cc886f69..cc208217bbb1a7bc39ca3bf27cebe9c1ce8b87cf 100644 (file)
@@ -426,6 +426,7 @@ print_access( struct access *b )
        } else if ( b->a_dnattr != NULL ) {
                fprintf( stderr, " dnattr=%s", b->a_dnattr );
        }
+#ifdef SLAPD_ACLGROUPS
         else if ( b->a_group != NULL ) {
                 fprintf( stderr, " group: %s", b->a_group );
                 if ( b->a_objectclassvalue )
@@ -433,6 +434,7 @@ print_access( struct access *b )
                 if ( b->a_groupattrname )
                         fprintf( stderr, " groupAttrName: %s", b->a_groupattrname );
         }
+#endif
        fprintf( stderr, "\n" );
 }