Skip to content
Snippets Groups Projects
Commit d0a843b7 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Insert #ifdef SLAPD_ACLGROUPS

parent 7c52060c
No related branches found
No related tags found
No related merge requests found
......@@ -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" );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment