mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-18 11:05:48 +08:00
Fix fprintf fmt bug
This commit is contained in:
parent
b46835ea4c
commit
6dab020308
@ -1310,7 +1310,7 @@ print_acl( Backend *be, AccessControl *a )
|
||||
if ( ! first ) {
|
||||
fprintf( stderr, "," );
|
||||
}
|
||||
fprintf( stderr, a->acl_attrs[i] );
|
||||
fputs( a->acl_attrs[i], stderr );
|
||||
first = 0;
|
||||
}
|
||||
fprintf( stderr, "\n" );
|
||||
|
@ -46,8 +46,8 @@ attributetype ( 2.5.18.4 NAME 'modifiersName'
|
||||
|
||||
attributetype ( 2.5.18.10 NAME 'subschemaSubentry'
|
||||
EQUALITY distinguishedNameMatch
|
||||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 NO-USER-MODIFICATION
|
||||
SINGLE-VALUE USAGE directoryOperation )
|
||||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
|
||||
SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation )
|
||||
|
||||
attributetype ( 2.5.21.1 NAME 'dITStructureRules'
|
||||
EQUALITY integerFirstComponentMatch
|
||||
@ -82,7 +82,7 @@ attributetype ( 2.5.21.9 NAME 'structuralObjectClass'
|
||||
DESC 'X.500(93) structural object class'
|
||||
EQUALITY objectIdentifierMatch
|
||||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.38
|
||||
NO-USER-MODIFICATION SINGLE-VALUE USAGE directoryOperation )
|
||||
SINGLE-VALUE NO-USER-MODIFICATION USAGE directoryOperation )
|
||||
|
||||
# LDAP Operational Attributes from RFC2252
|
||||
attributetype ( 1.3.6.1.4.1.1466.101.120.5 NAME 'namingContexts'
|
||||
|
Loading…
Reference in New Issue
Block a user